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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 3 years, 12 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 4
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 7
8 window.addEventListener('load', function() 8 window.addEventListener('load', function()
9 { 9 {
10 document.getElementsByTagName('keygen')[0].appendChild(document.createTextNo de('FAIL')); 10 document.getElementsByTagName('input')[0].appendChild(document.createTextNod e('FAIL'));
11 }, false); 11 }, false);
12 12
13 </script> 13 </script>
14 </head> 14 </head>
15 <body> 15 <body>
16 Children of an element are never rendered is it has a shadow DOM subtree.<br> 16 Children of an element are never rendered if it has a shadow DOM subtree.<br>
17 Should not see the word FAIL below.<br> 17 Should not see the word FAIL below.<br>
18 <keygen></keygen> 18 <input type="datetime" />
19 </body> 19 </body>
20 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698