OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <head> | 2 <head> |
3 <title>Test for embedded iframe with height: 100% and anonymous table cell paren
t.</title> | 3 <title>Test for embedded iframe with height: 100% and anonymous table cell paren
t.</title> |
4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 <script> | 5 <script> |
6 if (window.testRunner) { | 6 if (window.testRunner) { |
7 testRunner.waitUntilDone(); | 7 testRunner.waitUntilDone(); |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 } | 9 } |
10 | 10 |
11 function getComputedStyleForElement(element, cssPropertyName) | 11 function getComputedStyleForElement(element, cssPropertyName) |
12 { | 12 { |
13 if (!element) { | 13 if (!element) { |
14 return null; | 14 return null; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 <p id="description"></p> | 59 <p id="description"></p> |
60 <div id="console"></div> | 60 <div id="console"></div> |
61 | 61 |
62 <div style="display:table; height: 100%;"> | 62 <div style="display:table; height: 100%;"> |
63 <div style="display:table-row; height: 100%;"> | 63 <div style="display:table-row; height: 100%;"> |
64 <iframe id="iframe-100" frameborder="0px" style="height: 100%;" src=""></iframe> | 64 <iframe id="iframe-100" frameborder="0px" style="height: 100%;" src=""></iframe> |
65 </div> | 65 </div> |
66 </div> | 66 </div> |
67 </body> | 67 </body> |
68 </html> | 68 </html> |
OLD | NEW |