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

Side by Side Diff: LayoutTests/css3/supports.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="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../resources/js-test.js"></script>
5 <style> 5 <style>
6 .test { 6 .test {
7 content: "UNTOUCHED"; 7 content: "UNTOUCHED";
8 } 8 }
9 9
10 @supports (display: none) { 10 @supports (display: none) {
11 #t0 { content: "APPLIED" } 11 #t0 { content: "APPLIED" }
12 } 12 }
13 13
14 @supports (display: deadbeef) { 14 @supports (display: deadbeef) {
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 div.id = "t" + i; 251 div.id = "t" + i;
252 div.className = "test"; 252 div.className = "test";
253 container.appendChild(div); 253 container.appendChild(div);
254 shouldBeEqualToString("getComputedStyle(document.getElementById('t"+i+"' )).content", untouchedTests.indexOf(i) >= 0 ? "UNTOUCHED" : "APPLIED"); 254 shouldBeEqualToString("getComputedStyle(document.getElementById('t"+i+"' )).content", untouchedTests.indexOf(i) >= 0 ? "UNTOUCHED" : "APPLIED");
255 } 255 }
256 256
257 test_container.parentNode.removeChild(test_container); 257 test_container.parentNode.removeChild(test_container);
258 </script> 258 </script>
259 </body> 259 </body>
260 </html> 260 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/font-feature-settings-parsing.html ('k') | LayoutTests/css3/supports-cssom.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698