layout/reftests/bidi/267459-1.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 <!DOCTYPE html>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <title>Test unicode-bidi in form controls</title>
michael@0 5 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
michael@0 6 <style type="text/css">
michael@0 7 .reversed {
michael@0 8 direction: rtl;
michael@0 9 unicode-bidi: bidi-override;
michael@0 10 }
michael@0 11 </style>
michael@0 12 </head>
michael@0 13 <body>
michael@0 14 <p class="reversed">This paragraph should appear backwards</p>
michael@0 15 <p>
michael@0 16 <textarea class="reversed" rows="3" cols="80">This textarea should appear backwards</textarea><br>
michael@0 17 <input class="reversed" type="text" size="80" value="This input should appear backwards"><br>
michael@0 18 <input class="reversed" type="button" value="This button should appear backwards"><br>
michael@0 19 <select size="6" class="reversed">
michael@0 20 <option selected class="reversed">This</option>
michael@0 21 <optgroup class="reversed" label="select">
michael@0 22 <option class="reversed">should</option>
michael@0 23 <option class="reversed">appear</option>
michael@0 24 </optgroup>
michael@0 25 <optgroup class="reversed" label="backwards">
michael@0 26 <option class="reversed">throughout</option>
michael@0 27 </optgroup>
michael@0 28 </select><br>
michael@0 29 </body>
michael@0 30 </html>

mercurial