Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(724)

Side by Side Diff: LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-anonymous-table-cell.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698