OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <script src="../../resources/js-test.js"></script> |
| 5 <link rel="stylesheet" type="text/css" href="resources/link-highlight-style.css"
> |
| 6 </head> |
| 7 <body onload="runTest();"> |
| 8 <style> |
| 9 #outerDiv { |
| 10 width: 150px; |
| 11 } |
| 12 #outerDiv, #outerDiv div { |
| 13 padding: 15px; |
| 14 border-style: solid; |
| 15 } |
| 16 </style> |
| 17 <div class="opaqueHighlight" id="outerDiv" style="cursor: pointer"> |
| 18 <div style="cursor: pointer;"> |
| 19 <div style="cursor: default;"> |
| 20 <div id="innerDiv"></div> |
| 21 </div> |
| 22 </div> |
| 23 </div> |
| 24 |
| 25 This test is successful if there is no green rectangle above. |
| 26 |
| 27 <script> |
| 28 function runTest() { |
| 29 if (window.testRunner) |
| 30 testRunner.dumpAsTextWithPixelResults(); |
| 31 } |
| 32 </script> |
| 33 </body> |
| 34 </html> |
OLD | NEW |