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

Side by Side Diff: sky/tests/lowlevel/style-basic.sky

Issue 694423002: Replace <link rel="import"> with <import> (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <link rel="import" href="../resources/dump-as-text.sky" /> 3 <import src="../resources/dump-as-text.sky" />
4 <style> 4 <style>
5 #id1 { order: 1; } 5 #id1 { order: 1; }
6 .class2 { order: 2; } 6 .class2 { order: 2; }
7 tag-name-3 { order: 3; } 7 tag-name-3 { order: 3; }
8 .class4.class4 { order: 4; } 8 .class4.class4 { order: 4; }
9 .class5#id5 { order: 5; } 9 .class5#id5 { order: 5; }
10 tag-name-6.class6#id6 { order: 6; } 10 tag-name-6.class6#id6 { order: 6; }
11 </style> 11 </style>
12 <body> 12 <body>
13 <div id="tests"> 13 <div id="tests">
(...skipping 21 matching lines...) Expand all
35 + "> order was " 35 + "> order was "
36 + order; 36 + order;
37 if (order != i) 37 if (order != i)
38 text += " expected " + i; 38 text += " expected " + i;
39 div.textContent = text; 39 div.textContent = text;
40 log.appendChild(div); 40 log.appendChild(div);
41 } 41 }
42 </script> 42 </script>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698