| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
| 2 "http://www.w3.org/TR/html4/strict.dtd"> | 2 "http://www.w3.org/TR/html4/strict.dtd"> |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | 5 <meta http-equiv="Content-type" content="text/html; charset=utf-8"> |
| 6 <title>Test for pointer-events property</title> | 6 <title>Test for pointer-events property</title> |
| 7 <style type="text/css" media="screen"> | 7 <style type="text/css" media="screen"> |
| 8 | 8 body { overflow: hidden; } |
| 9 |
| 9 .row { | 10 .row { |
| 10 position: absolute; | 11 position: absolute; |
| 11 width: 300px; | 12 width: 300px; |
| 12 height: 100px; | 13 height: 100px; |
| 13 left: 10px; | 14 left: 10px; |
| 14 } | 15 } |
| 15 | 16 |
| 16 .row1 { top: 140px; } | 17 .row1 { top: 140px; } |
| 17 .row2 { top: 240px; } | 18 .row2 { top: 240px; } |
| 18 .row3 { top: 340px; } | 19 .row3 { top: 340px; } |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 <div class="col col1"> | 294 <div class="col col1"> |
| 294 <p id="p15"><span id="p16">inline</span> has none, parent auto | 295 <p id="p15"><span id="p16">inline</span> has none, parent auto |
| 295 </p> | 296 </p> |
| 296 </div> | 297 </div> |
| 297 <div class="col col2">p15</div> | 298 <div class="col col2">p15</div> |
| 298 <div class="col col3">none</div> | 299 <div class="col col3">none</div> |
| 299 </div> | 300 </div> |
| 300 | 301 |
| 301 </body> | 302 </body> |
| 302 </html> | 303 </html> |
| OLD | NEW |