layout/reftests/bugs/395107-2.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 <!DOCTYPE html>
     2 <html>
     3 <body>
     5 <select id="a">
     6 <option>Option 1</option>
     7 <option>Option 2</option>
     8 <option>Option 3</option>
     9 <option>Option 4</option>
    10 </select>
    12 <script>
    13 document.body.offsetWidth;
    14 var x=document.getElementById('a').options;
    15 x[1].defaultSelected = true;
    16 x[2].defaultSelected = true;
    17 x[3].defaultSelected = true;
    18 </script>
    19 </body>
    20 </html>

mercurial