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

Side by Side Diff: LayoutTests/fast/replaced/table-percent-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 <html> 1 <html>
2 <head> 2 <head>
3 <title>Test for Buzilla Bug 15359: JPEG image not shown when height is specified as percentage inside a table</title> 3 <title>Test for Buzilla Bug 15359: JPEG image not shown when height is specified as percentage inside a table</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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 <table><tr><td><input type="submit" id="input-submit-75" style="height: 75%;"></ td></tr></table> 175 <table><tr><td><input type="submit" id="input-submit-75" style="height: 75%;"></ td></tr></table>
176 <table><tr><td><input type="submit" id="input-submit-100" style="height: 100%;"> </td></tr></table> 176 <table><tr><td><input type="submit" id="input-submit-100" style="height: 100%;"> </td></tr></table>
177 177
178 <table><tr><td><select id="select-75" style="height: 75%;"><option>Option</optio n></select></td></tr></table> 178 <table><tr><td><select id="select-75" style="height: 75%;"><option>Option</optio n></select></td></tr></table>
179 <table><tr><td><select id="select-100" style="height: 100%;"><option>Option</opt ion></select></td></tr></table> 179 <table><tr><td><select id="select-100" style="height: 100%;"><option>Option</opt ion></select></td></tr></table>
180 180
181 <p id="description"></p> 181 <p id="description"></p>
182 <div id="console"></div> 182 <div id="console"></div>
183 </body> 183 </body>
184 </html> 184 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698