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

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

Issue 22852020: Only allow reprojecting shadows between ShadowRoots of the same type (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Delete another test Created 7 years, 4 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 </head> 5 </head>
6 <body> 6 <body>
7 <style> 7 <style>
8 div#wrapper { 8 div#wrapper {
9 display: block; 9 display: block;
10 margin: 0; 10 margin: 0;
11 padding: 0; 11 padding: 0;
12 width: auto; 12 width: auto;
13 height: 3em; 13 height: 3em;
14 vertical-align: 0; 14 vertical-align: 0;
15 } 15 }
16 16
17 progress#with-style { 17 progress#with-style {
18 display: block; 18 display: block;
19 width: 15em; 19 width: 15em;
20 height: 3em; 20 height: 3em;
21 } 21 }
22 </style> 22 </style>
23 23
24 <div id="container"> 24 <div id="container">
25 <div id="wrapper" class="progress-like"> 25 <div id="wrapper" class="progress-like">
26 <div style="margin-left: 100px;"> 26 <div style="margin-left: 100px;">
27 <progress id="with-style" class="progress-inner-element-like" min="0 " max="100" value="50"></progress><span>(after)</span> 27 <span>(after)</span>
28 </div> 28 </div>
29 </div> 29 </div>
30 </div> 30 </div>
31 31
32 </body> 32 </body>
33 </html> 33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698