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

Side by Side Diff: LayoutTests/fast/regions/webkit-named-flow-name.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 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../../resources/js-test.js"></script>
6 <script src="resources/helper.js"></script> 6 <script src="resources/helper.js"></script>
7 <style> 7 <style>
8 .flow { -webkit-flow-into: flow-name; } 8 .flow { -webkit-flow-into: flow-name; }
9 .region { -webkit-flow-from: flow-name; } 9 .region { -webkit-flow-from: flow-name; }
10 #region { width: 250px; height: 50px; } 10 #region { width: 250px; height: 50px; }
11 </style> 11 </style>
12 </head> 12 </head>
13 <body> 13 <body>
14 <p id="article" class="flow">The content flow</p> 14 <p id="article" class="flow">The content flow</p>
15 <script> 15 <script>
(...skipping 25 matching lines...) Expand all
41 region.className = ""; 41 region.className = "";
42 article.className = ""; 42 article.className = "";
43 region.style.display = "none"; 43 region.style.display = "none";
44 article.style.display = "none"; 44 article.style.display = "none";
45 45
46 // The name should be 'flow-name' when the named flow is in the NULL state 46 // The name should be 'flow-name' when the named flow is in the NULL state
47 shouldBe("namedFlow.name", "'flow-name'"); 47 shouldBe("namedFlow.name", "'flow-name'");
48 </script> 48 </script>
49 </body> 49 </body>
50 </html> 50 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698