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

Side by Side Diff: LayoutTests/fast/dom/shadow/focus-shadowhost-display-none.html

Issue 1169613002: Remove unnecessary testRunner.dumpAsText in LayoutTests/fast/dom/shadow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 <script src="../../../resources/js-test.js"></script> 2 <script src="../../../resources/js-test.js"></script>
3 <style> 3 <style>
4 div#host:focus { display: none; } 4 div#host:focus { display: none; }
5 </style> 5 </style>
6 <div id="host"></div> 6 <div id="host"></div>
7 <script> 7 <script>
8 description('Check if shadow host with display:none CSS rule for :focus works. crbug.com/482830'); 8 description('Check if shadow host with display:none CSS rule for :focus works. crbug.com/482830');
9 9
10 var root = host.createShadowRoot(); 10 var root = host.createShadowRoot();
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 input.removeEventListener('blur', onBlur); 51 input.removeEventListener('blur', onBlur);
52 resolve(); 52 resolve();
53 } 53 }
54 input.addEventListener('blur', onBlur); 54 input.addEventListener('blur', onBlur);
55 }); 55 });
56 } 56 }
57 57
58 if (window.testRunner) { 58 if (window.testRunner) {
59 testFocusShadowHost().then(testFocusInsideShadowRoot).then(function(){ testR unner.notifyDone(); }); 59 testFocusShadowHost().then(testFocusInsideShadowRoot).then(function(){ testR unner.notifyDone(); });
60 testRunner.waitUntilDone(); 60 testRunner.waitUntilDone();
61 testRunner.dumpAsText();
62 } 61 }
63 </script> 62 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698