OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <style> | |
4 .runin { display: run-in } | |
5 </style> | |
6 </head> | |
7 <body> | |
8 <div> | |
Julien - ping for review
2013/07/17 17:28:24
Please add a description for what you are testing
| |
9 <div class="runin">Test passes if this text is visible</div> | |
10 <div id="t1">This should not be visible</div> | |
11 </div> | |
12 </body> | |
13 <script> | |
14 if (window.testRunner) | |
15 testRunner.dumpAsText(); | |
16 document.body.offsetTop; | |
17 document.getElementById('t1').style.display = 'none'; | |
18 </script> | |
19 </html> | |
OLD | NEW |