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

Side by Side Diff: LayoutTests/fast/regions/get-regions-by-content-horiz-tb.html

Issue 48903019: Delete js-test-post.js. (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="../../fast/js/resources/js-test-pre.js"></script>
5 <script src="resources/helper.js"></script> 5 <script src="resources/helper.js"></script>
6 <style> 6 <style>
7 body { font-family: monospace; } 7 body { font-family: monospace; }
8 #article { -webkit-flow-into: flow; } 8 #article { -webkit-flow-into: flow; }
9 #region { -webkit-flow-from: flow; width: 250px; height: 50px; } 9 #region { -webkit-flow-from: flow; width: 250px; height: 50px; }
10 #region2 { -webkit-flow-from: flow; width: 250px; height: 50px; } 10 #region2 { -webkit-flow-from: flow; width: 250px; height: 50px; }
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 var region5 = document.createElement("div"); 142 var region5 = document.createElement("div");
143 region5.id = "region5"; 143 region5.id = "region5";
144 document.body.appendChild(region5); 144 document.body.appendChild(region5);
145 145
146 var regionListP22 = namedFlow2.getRegionsByContent(p2); 146 var regionListP22 = namedFlow2.getRegionsByContent(p2);
147 shouldEvaluateTo("regionListP22.length", 1); 147 shouldEvaluateTo("regionListP22.length", 1);
148 shouldBeEqualToString("regionListP22.item(0).id", "region5"); 148 shouldBeEqualToString("regionListP22.item(0).id", "region5");
149 149
150 hideRegions(); 150 hideRegions();
151 </script> 151 </script>
152 <script src="../../fast/js/resources/js-test-post.js"></script>
153 </body> 152 </body>
154 </html> 153 </html>
155 154
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698