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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadowdom-for-meter-with-style-expected.html

Issue 14594006: Remove Internals::createShadowRoot(element) and polyfill.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 <body> 3 <body>
4 <script src="resources/polyfill.js"></script>
5 <style> 4 <style>
6 div#wrapper { 5 div#wrapper {
7 display: block; 6 display: block;
8 margin: 0; 7 margin: 0;
9 padding: 0; 8 padding: 0;
10 width: auto; 9 width: auto;
11 height: 3em; 10 height: 3em;
12 vertical-align: 0; 11 vertical-align: 0;
13 } 12 }
14 13
15 meter { 14 meter {
16 display: block; 15 display: block;
17 width: 15em; 16 width: 15em;
18 height: 3em; 17 height: 3em;
19 } 18 }
20 </style> 19 </style>
21 20
22 <div id="container"> 21 <div id="container">
23 <div id="wrapper" class="meter-like"> 22 <div id="wrapper" class="meter-like">
24 <div style="margin-left: 100px;"> 23 <div style="margin-left: 100px;">
25 <meter id="with-style" class="meter-inner-element-like" min="0" max= "100" value="50"></meter><span>(after)</span> 24 <meter id="with-style" class="meter-inner-element-like" min="0" max= "100" value="50"></meter><span>(after)</span>
26 </div> 25 </div>
27 </div> 26 </div>
28 </div> 27 </div>
29 28
30 </body> 29 </body>
31 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698