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

Side by Side Diff: LayoutTests/fast/regions/get-regions-by-content-vert-lr.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 html { -webkit-writing-mode: vertical-lr; } 7 html { -webkit-writing-mode: vertical-lr; }
8 body { font-family: monospace; } 8 body { font-family: monospace; }
9 #article { -webkit-flow-into: flow; } 9 #article { -webkit-flow-into: flow; }
10 .regionBox { height: 250px; width: 50px; } 10 .regionBox { height: 250px; width: 50px; }
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 region5.id = "region5"; 143 region5.id = "region5";
144 region5.className = "regionBox"; 144 region5.className = "regionBox";
145 document.body.appendChild(region5); 145 document.body.appendChild(region5);
146 146
147 var regionListP22 = namedFlow2.getRegionsByContent(p2); 147 var regionListP22 = namedFlow2.getRegionsByContent(p2);
148 shouldEvaluateTo("regionListP22.length", 1); 148 shouldEvaluateTo("regionListP22.length", 1);
149 shouldBeEqualToString("regionListP22.item(0).id", "region5"); 149 shouldBeEqualToString("regionListP22.item(0).id", "region5");
150 150
151 hideRegions(); 151 hideRegions();
152 </script> 152 </script>
153 <script src="../../fast/js/resources/js-test-post.js"></script>
154 </body> 153 </body>
155 </html> 154 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698