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

Side by Side Diff: LayoutTests/fast/css/getPropertyValue-webkit-text-stroke.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 <title>-webkit-text-stroke shorthand getPropertyValue test</title> 4 <title>-webkit-text-stroke shorthand getPropertyValue test</title>
5 <style> 5 <style>
6 .test { 6 .test {
7 width: 5em; 7 width: 5em;
8 height: 10em; 8 height: 10em;
9 } 9 }
10 </style> 10 </style>
11 <script src="../js/resources/js-test-pre.js"></script> 11 <script src="../../resources/js-test.js"></script>
12 <script> 12 <script>
13 if (window.testRunner) 13 if (window.testRunner)
14 testRunner.dumpAsText(); 14 testRunner.dumpAsText();
15 </script> 15 </script>
16 </head> 16 </head>
17 <body> 17 <body>
18 <div id="text-stroke1" class="test" style="-webkit-text-stroke: thin red;">< /div> 18 <div id="text-stroke1" class="test" style="-webkit-text-stroke: thin red;">< /div>
19 <div id="text-stroke2" class="test" style="-webkit-text-stroke: green;"></di v> 19 <div id="text-stroke2" class="test" style="-webkit-text-stroke: green;"></di v>
20 <div id="text-stroke3" class="test" style="-webkit-text-stroke: thin;"></div > 20 <div id="text-stroke3" class="test" style="-webkit-text-stroke: thin;"></div >
21 <div id="text-stroke4" class="test" style="-webkit-text-stroke: 1px red;"></ div> 21 <div id="text-stroke4" class="test" style="-webkit-text-stroke: 1px red;"></ div>
(...skipping 13 matching lines...) Expand all
35 shouldBeEqualToString('webkitTextStrokeValue("text-stroke3")', 'thin'); 35 shouldBeEqualToString('webkitTextStrokeValue("text-stroke3")', 'thin');
36 shouldBeEqualToString('webkitTextStrokeValue("text-stroke4")', '1px red'); 36 shouldBeEqualToString('webkitTextStrokeValue("text-stroke4")', '1px red');
37 shouldBeEqualToString('webkitTextStrokeValue("text-stroke5")', '1px black' ); 37 shouldBeEqualToString('webkitTextStrokeValue("text-stroke5")', '1px black' );
38 debug("NOTE: 'foo' is an illegal CSS value for '-webkit-text-stroke'."); 38 debug("NOTE: 'foo' is an illegal CSS value for '-webkit-text-stroke'.");
39 shouldBe('webkitTextStrokeValue("text-stroke6")', "null"); 39 shouldBe('webkitTextStrokeValue("text-stroke6")', "null");
40 debug("NOTE: If only few longhand properties are specified, getPropertyVal ue for shorthand property returns null.") 40 debug("NOTE: If only few longhand properties are specified, getPropertyVal ue for shorthand property returns null.")
41 shouldBe('webkitTextStrokeValue("text-stroke7")', "null"); 41 shouldBe('webkitTextStrokeValue("text-stroke7")', "null");
42 </script> 42 </script>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/getPropertyValue-webkit-margin-collapse.html ('k') | LayoutTests/fast/css/hover-active-drag.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698