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

Side by Side Diff: LayoutTests/fast/regions/webkit-named-flow-first-empty-region-index.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="../../fast/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 body { font-family: monospace } 8 body { font-family: monospace }
9 .content { -webkit-flow-into: flow } 9 .content { -webkit-flow-into: flow }
10 .region { -webkit-flow-from: flow} 10 .region { -webkit-flow-from: flow}
11 #region, #region2, #region3 { width: 250px; height: 50px; } 11 #region, #region2, #region3 { width: 250px; height: 50px; }
12 </style> 12 </style>
13 </head> 13 </head>
14 <body> 14 <body>
15 <div id="article" class="content"> 15 <div id="article" class="content">
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // FirstEmptyRegionIndex should be -1, since there are no more regions in th e named flow. 78 // FirstEmptyRegionIndex should be -1, since there are no more regions in th e named flow.
79 shouldBe("namedFlow.firstEmptyRegionIndex", "-1"); 79 shouldBe("namedFlow.firstEmptyRegionIndex", "-1");
80 80
81 document.getElementById("article").style.display = "none"; 81 document.getElementById("article").style.display = "none";
82 region.style.display = "none"; 82 region.style.display = "none";
83 region2.style.display = "none"; 83 region2.style.display = "none";
84 region3.style.display = "none"; 84 region3.style.display = "none";
85 </script> 85 </script>
86 </body> 86 </body>
87 </html> 87 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698