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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadowdom-for-progress-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 <head> 3 <head>
4 <link rel="stylesheet" href="resources/replaced-element-styles.css"> 4 <link rel="stylesheet" href="resources/replaced-element-styles.css">
5 <script src="resources/polyfill.js"></script>
6 </head> 5 </head>
7 <body> 6 <body>
8 <style> 7 <style>
9 div#wrapper { 8 div#wrapper {
10 display: block; 9 display: block;
11 margin: 0; 10 margin: 0;
12 padding: 0; 11 padding: 0;
13 width: auto; 12 width: auto;
14 height: 3em; 13 height: 3em;
15 vertical-align: 0; 14 vertical-align: 0;
16 } 15 }
17 16
18 progress#with-style { 17 progress#with-style {
19 display: block; 18 display: block;
20 width: 15em; 19 width: 15em;
21 height: 3em; 20 height: 3em;
22 } 21 }
23 </style> 22 </style>
24 23
25 <div id="container"> 24 <div id="container">
26 <div id="wrapper" class="progress-like"> 25 <div id="wrapper" class="progress-like">
27 <div style="margin-left: 100px;"> 26 <div style="margin-left: 100px;">
28 <progress id="with-style" class="progress-inner-element-like" min="0 " max="100" value="50"></progress><span>(after)</span> 27 <progress id="with-style" class="progress-inner-element-like" min="0 " max="100" value="50"></progress><span>(after)</span>
29 </div> 28 </div>
30 </div> 29 </div>
31 </div> 30 </div>
32 31
33 </body> 32 </body>
34 </html> 33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698