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

Side by Side Diff: LayoutTests/fast/dom/shadow/pseudoclass-update-indeterminate-progress.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 <script src="resources/polyfill.js"></script>
5 <style> 4 <style>
6 progress { 5 progress {
7 -webkit-appearance: none; 6 -webkit-appearance: none;
8 } 7 }
9 </style> 8 </style>
10 </head> 9 </head>
11 10
12 <body> 11 <body>
13 12
14 <p>When progress became 'indeterminate' or not-'indeterminate', distribution sho uld happen.</p> 13 <p>When progress became 'indeterminate' or not-'indeterminate', distribution sho uld happen.</p>
(...skipping 14 matching lines...) Expand all
29 setTimeout(function() { 28 setTimeout(function() {
30 progress1.removeAttribute('value'); 29 progress1.removeAttribute('value');
31 progress2.value = '70'; 30 progress2.value = '70';
32 testRunner.notifyDone(); 31 testRunner.notifyDone();
33 }, 0); 32 }, 0);
34 33
35 </script> 34 </script>
36 </body> 35 </body>
37 </html> 36 </html>
38 37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698