| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Document::nodesFromRect : Rect-based hit-testing on tables - bug 86605</t
itle> | 4 <title>Document::nodesFromRect : Rect-based hit-testing on tables - bug 86605</t
itle> |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 6 #sandbox { | 6 #sandbox { |
| 7 position: absolute; | 7 position: absolute; |
| 8 left: 0px; | 8 left: 0px; |
| 9 top: 0px; | 9 top: 0px; |
| 10 width: 600px; | 10 width: 600px; |
| 11 height: 800px; | 11 height: 800px; |
| 12 } | 12 } |
| 13 #testtable { | 13 #testtable { |
| 14 margin: 100px; | 14 margin: 100px; |
| 15 width: 200px; | 15 width: 200px; |
| 16 height: 200px; | 16 height: 200px; |
| 17 } | 17 } |
| 18 .rtl { | 18 .rtl { |
| 19 direction: rtl; | 19 direction: rtl; |
| 20 } | 20 } |
| 21 .tblr { | 21 .tblr { |
| 22 -webkit-writing-mode: vertical-lr; | 22 -webkit-writing-mode: vertical-lr; |
| 23 } | 23 } |
| 24 </style> | 24 </style> |
| 25 <script src="../../js/resources/js-test-pre.js"></script> | 25 <script src="../../../resources/js-test.js"></script> |
| 26 <script src="resources/nodesFromRect.js"></script> | 26 <script src="resources/nodesFromRect.js"></script> |
| 27 </head> | 27 </head> |
| 28 | 28 |
| 29 <body> | 29 <body> |
| 30 <div id=sandbox> | 30 <div id=sandbox> |
| 31 <table id=testtable> | 31 <table id=testtable> |
| 32 <tr id=tr1> | 32 <tr id=tr1> |
| 33 <td id=td11> | 33 <td id=td11> |
| 34 <td id=td12> | 34 <td id=td12> |
| 35 <td id=td13> | 35 <td id=td13> |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 } | 111 } |
| 112 | 112 |
| 113 runTest(); | 113 runTest(); |
| 114 </script> | 114 </script> |
| 115 | 115 |
| 116 <p id='description'></p> | 116 <p id='description'></p> |
| 117 <span id="console"></span> | 117 <span id="console"></span> |
| 118 </body> | 118 </body> |
| 119 </html> | 119 </html> |
| 120 | 120 |
| OLD | NEW |