| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-sc
ale=1.0, user-scalable=no" /> | |
| 5 <style type="text/css"> | |
| 6 div.transform { | |
| 7 background-color: #00FF00; | |
| 8 width: 100px; | |
| 9 height: 100px; | |
| 10 padding-left: 30px; | |
| 11 padding-top: 20px; | |
| 12 -webkit-transform:matrix(0.866,0.5,-0.5,0.866,120,150); | |
| 13 } | |
| 14 div.scroll { | |
| 15 background-color: #00FFFF; | |
| 16 width: 100px; | |
| 17 height: 100px; | |
| 18 overflow: scroll; | |
| 19 } | |
| 20 div.fixed { | |
| 21 background-color: #FF0000; | |
| 22 left: 200px; | |
| 23 top: 50px; | |
| 24 width: 100px; | |
| 25 height: 100px; | |
| 26 position: fixed; | |
| 27 } | |
| 28 div.relative-overflow { | |
| 29 position: relative; | |
| 30 overflow: hidden; | |
| 31 height: 100px; | |
| 32 } | |
| 33 div.margin-overflow { | |
| 34 overflow: hidden; | |
| 35 margin-top:20px; | |
| 36 height: 50px; | |
| 37 } | |
| 38 div.absolute { | |
| 39 position: absolute; | |
| 40 top: 0px; | |
| 41 height: 20px; | |
| 42 width: 80px; | |
| 43 background-color: "green"; | |
| 44 } | |
| 45 </style> | |
| 46 </head> | |
| 47 <body> | |
| 48 This is a test. | |
| 49 <br> | |
| 50 <br> | |
| 51 <br> | |
| 52 Foo bar. | |
| 53 <br> | |
| 54 <br> | |
| 55 <br> | |
| 56 result 02 | |
| 57 <div class="transform"> | |
| 58 result 03 | |
| 59 </div> | |
| 60 result 04 | |
| 61 <div class="fixed"> | |
| 62 result 05 | |
| 63 </div> | |
| 64 result 06 | |
| 65 <div class="scroll"> | |
| 66 result 07 | |
| 67 Foo bar. | |
| 68 <br> | |
| 69 <br> | |
| 70 <br> | |
| 71 result 08 | |
| 72 </div> | |
| 73 result 09 | |
| 74 <br> | |
| 75 result 10 | |
| 76 <table border="1" cellpadding="10" cellspacing="10"> | |
| 77 <tr> | |
| 78 <th>Foo</th> | |
| 79 <th>Bar</th> | |
| 80 <th>result 11</th> | |
| 81 </tr> | |
| 82 <tr> | |
| 83 <td rowspan="2">result 12</td> | |
| 84 <td colspan="2">result 13</td> | |
| 85 </tr> | |
| 86 <tr> | |
| 87 <td colspan="2">result 14</td> | |
| 88 </tr> | |
| 89 </table> | |
| 90 result 15 | |
| 91 <div class="transform"> | |
| 92 <div style="height:0px"> | |
| 93 <div style="float:left;"> | |
| 94 result 16 | |
| 95 </div> | |
| 96 </div> | |
| 97 </div> | |
| 98 <div class="relative-overflow"> | |
| 99 <div class="margin-overflow"> | |
| 100 result 17 | |
| 101 <div class="absolute">result 18</div> | |
| 102 </div> | |
| 103 </div> | |
| 104 <!-- Tests that will not yield matches should go below this line. --> | |
| 105 <select> | |
| 106 <option>result 19</option> | |
| 107 </select> | |
| 108 </body> | |
| 109 </html> | |
| OLD | NEW |