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

Side by Side Diff: LayoutTests/fast/css/parsing-object-position.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 <script> 7 <script>
8 description("This tests checks that all of the input values for obje ct-position parse correctly."); 8 description("This tests checks that all of the input values for obje ct-position parse correctly.");
9 9
10 function test(value) 10 function test(value)
11 { 11 {
12 var div = document.createElement("div"); 12 var div = document.createElement("div");
13 div.setAttribute("style", value); 13 div.setAttribute("style", value);
14 document.body.appendChild(div); 14 document.body.appendChild(div);
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 shouldBeNull('test("object-position: initial initial;")'); 70 shouldBeNull('test("object-position: initial initial;")');
71 shouldBeNull('test("object-position: -webkit-fill-available;")'); 71 shouldBeNull('test("object-position: -webkit-fill-available;")');
72 shouldBeNull('test("object-position: min-content;")'); 72 shouldBeNull('test("object-position: min-content;")');
73 shouldBeNull('test("object-position: intrinsic;")'); 73 shouldBeNull('test("object-position: intrinsic;")');
74 shouldBeNull('test("object-position: auto;")'); 74 shouldBeNull('test("object-position: auto;")');
75 shouldBeNull('test("object-position: none;")'); 75 shouldBeNull('test("object-position: none;")');
76 shouldBeNull('test("object-position: fill;")'); 76 shouldBeNull('test("object-position: fill;")');
77 </script> 77 </script>
78 </body> 78 </body>
79 </html> 79 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/parsing-not-after-supports.html ('k') | LayoutTests/fast/css/parsing-text-rendering.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698