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

Side by Side Diff: LayoutTests/fast/regions/get-region-flow-ranges-text-vert-lr.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 html { -webkit-writing-mode: vertical-rl; } 8 html { -webkit-writing-mode: vertical-rl; }
9 body { font-family: monospace; } 9 body { font-family: monospace; }
10 #wrapper { font-size: 50px; } 10 #wrapper { font-size: 50px; }
11 .border { border: 1px solid red; } 11 .border { border: 1px solid red; }
12 #box { -webkit-flow-into: flow1;} 12 #box { -webkit-flow-into: flow1;}
13 #region1 { -webkit-flow-from: flow1; width: 70px; height: 250px; left: 20px; top: 250px;} 13 #region1 { -webkit-flow-from: flow1; width: 70px; height: 250px; left: 20px; top: 250px;}
14 #region2 { -webkit-flow-from: flow1; width: 60px; height: 250px; left: 20px; top: 300px;} 14 #region2 { -webkit-flow-from: flow1; width: 60px; height: 250px; left: 20px; top: 300px;}
15 </style> 15 </style>
(...skipping 23 matching lines...) Expand all
39 39
40 function hideRegionsAndFlows() { 40 function hideRegionsAndFlows() {
41 document.getElementById("region1").style.visibility = "hidden"; 41 document.getElementById("region1").style.visibility = "hidden";
42 document.getElementById("region2").style.visibility = "hidden"; 42 document.getElementById("region2").style.visibility = "hidden";
43 } 43 }
44 44
45 hideRegionsAndFlows(); 45 hideRegionsAndFlows();
46 </script> 46 </script>
47 </body> 47 </body>
48 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698