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

Side by Side Diff: LayoutTests/fast/regions/webkit-named-flow-get-content.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 #region { -webkit-flow-from: flow; width: 250px; height: 150px; } 7 #region { -webkit-flow-from: flow; width: 250px; height: 150px; }
8 </style> 8 </style>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 shouldEvaluateTo("namedFlowContent13.length", "0"); 124 shouldEvaluateTo("namedFlowContent13.length", "0");
125 125
126 var namedFlowContent14 = flow2.getContent(); 126 var namedFlowContent14 = flow2.getContent();
127 shouldEvaluateTo("namedFlowContent14.length", "0"); 127 shouldEvaluateTo("namedFlowContent14.length", "0");
128 document.body.appendChild(article); 128 document.body.appendChild(article);
129 var namedFlowContent15 = flow2.getContent(); 129 var namedFlowContent15 = flow2.getContent();
130 shouldEvaluateTo("namedFlowContent15.length", "1"); 130 shouldEvaluateTo("namedFlowContent15.length", "1");
131 131
132 document.getElementById("region").style.visibility = "hidden"; 132 document.getElementById("region").style.visibility = "hidden";
133 </script> 133 </script>
134 <script src="../../fast/js/resources/js-test-post.js"></script>
135 </body> 134 </body>
136 </html> 135 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698