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

Side by Side Diff: LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-table-cell-ignore-height.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 <html> 2 <html>
3 <head> 3 <head>
4 4
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../../resources/js-test.js"></script>
6 <script> 6 <script>
7 if (window.testRunner) { 7 if (window.testRunner) {
8 testRunner.waitUntilDone(); 8 testRunner.waitUntilDone();
9 testRunner.dumpAsText(); 9 testRunner.dumpAsText();
10 } 10 }
11 11
12 function getComputedStyleForElement(element, cssPropertyName) 12 function getComputedStyleForElement(element, cssPropertyName)
13 { 13 {
14 if (!element) { 14 if (!element) {
15 return null; 15 return null;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 <div id="console"></div> 62 <div id="console"></div>
63 <div style='height: 100%; display:table;'> 63 <div style='height: 100%; display:table;'>
64 <div style='height: 100%; display:table-row;'> 64 <div style='height: 100%; display:table-row;'>
65 <div style='display:table-cell;'> 65 <div style='display:table-cell;'>
66 <iframe id='iframe-100' frameborder='0px' src='data:text/html;charse t=utf-8,<body></body>'></iframe> 66 <iframe id='iframe-100' frameborder='0px' src='data:text/html;charse t=utf-8,<body></body>'></iframe>
67 </div> 67 </div>
68 </div> 68 </div>
69 </div> 69 </div>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698