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

Side by Side Diff: LayoutTests/css3/supports-cssom.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
« no previous file with comments | « LayoutTests/css3/supports.html ('k') | LayoutTests/css3/unicode-bidi-insolate-parse.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset=utf8> 4 <meta charset=utf8>
5 <script src="../fast/js/resources/js-test-pre.js"></script> 5 <script src="../resources/js-test.js"></script>
6 <style> 6 <style>
7 @supports (width: 0) { 7 @supports (width: 0) {
8 s { width: 0; } 8 s { width: 0; }
9 @supports (width: 1) { 9 @supports (width: 1) {
10 s { color: #000; } 10 s { color: #000; }
11 @import url("../fast/cssom/resources/import.css"); 11 @import url("../fast/cssom/resources/import.css");
12 @charset "UTF-8"; 12 @charset "UTF-8";
13 @namespace ""; 13 @namespace "";
14 } 14 }
15 } 15 }
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 shouldEvaluateTo("rules[0].cssRules.length", 2); 122 shouldEvaluateTo("rules[0].cssRules.length", 2);
123 shouldBe("rules[0].cssRules[0].type", "CSSRule.STYLE_RULE"); 123 shouldBe("rules[0].cssRules[0].type", "CSSRule.STYLE_RULE");
124 shouldBe("rules[0].cssRules[1].type", "CSSRule.SUPPORTS_RULE"); 124 shouldBe("rules[0].cssRules[1].type", "CSSRule.SUPPORTS_RULE");
125 shouldEvaluateTo("rules[0].cssRules[1].cssRules.length", 1); 125 shouldEvaluateTo("rules[0].cssRules[1].cssRules.length", 1);
126 shouldBe("rules[0].cssRules[1].cssRules[0].type", "CSSRule.STYLE_RULE"); 126 shouldBe("rules[0].cssRules[1].cssRules[0].type", "CSSRule.STYLE_RULE");
127 127
128 </script> 128 </script>
129 </body> 129 </body>
130 </html> 130 </html>
131 131
OLDNEW
« no previous file with comments | « LayoutTests/css3/supports.html ('k') | LayoutTests/css3/unicode-bidi-insolate-parse.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698