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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify.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 <script src="../../../js/resources/js-test-pre.js"></script> 4 <script src="../../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <div id="test"></div> 7 <div id="test"></div>
8 <div id="ancestor"><div id="child"></div></div> 8 <div id="ancestor"><div id="child"></div></div>
9 9
10 <script> 10 <script>
11 function testElementStyle(value) 11 function testElementStyle(value)
12 { 12 {
13 shouldBe("element.style.textJustify", "'" + value + "'"); 13 shouldBe("element.style.textJustify", "'" + value + "'");
14 shouldBe("element.style.getPropertyCSSValue('text-justify').cssText", "'" + value + "'"); 14 shouldBe("element.style.getPropertyCSSValue('text-justify').cssText", "'" + value + "'");
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 computedValueSettingTest('inherit', 'none'); 96 computedValueSettingTest('inherit', 'none');
97 computedValueSettingTest('inherit', 'distribute'); 97 computedValueSettingTest('inherit', 'distribute');
98 computedValueSettingTest('initial', 'auto'); 98 computedValueSettingTest('initial', 'auto');
99 99
100 ownValueTest("inter-word", "distribute"); 100 ownValueTest("inter-word", "distribute");
101 ownValueTest("none", "inter-word"); 101 ownValueTest("none", "inter-word");
102 </script> 102 </script>
103 </body> 103 </body>
104 104
105 </html> 105 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698