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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadow-contents-select.html

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months 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 <style> 4 <style>
5 /* relative positioning ensures underlying RenderLayer */ 5 /* relative positioning ensures underlying Layer */
6 .container { 6 .container {
7 position: relative; 7 position: relative;
8 } 8 }
9 </style> 9 </style>
10 <script> 10 <script>
11 function appendShadow(target, select) { 11 function appendShadow(target, select) {
12 var root = target.createShadowRoot(); 12 var root = target.createShadowRoot();
13 13
14 var child0 = document.createElement("span"); 14 var child0 = document.createElement("span");
15 child0.innerHTML = "Hello,"; 15 child0.innerHTML = "Hello,";
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 for (var i = 0; i < testFuncs.length; ++i) { 165 for (var i = 0; i < testFuncs.length; ++i) {
166 testFuncs[i](); 166 testFuncs[i]();
167 } 167 }
168 } 168 }
169 </script> 169 </script>
170 </head> 170 </head>
171 <body onload="doTest()"> 171 <body onload="doTest()">
172 <div id="container"></div> 172 <div id="container"></div>
173 </body> 173 </body>
174 </html> 174 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698