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

Unified 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 4 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html
index 8169bfb56840b78c3227f0b5b7f983c58d560c0c..3d88546845734f81782756099b15f40ba0629b8a 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/no-renderers-for-light-children.html
@@ -7,14 +7,14 @@ if (window.testRunner)
window.addEventListener('load', function()
{
- document.getElementsByTagName('keygen')[0].appendChild(document.createTextNode('FAIL'));
+ document.getElementsByTagName('input')[0].appendChild(document.createTextNode('FAIL'));
}, false);
</script>
</head>
<body>
-Children of an element are never rendered is it has a shadow DOM subtree.<br>
+Children of an element are never rendered if it has a shadow DOM subtree.<br>
Should not see the word FAIL below.<br>
-<keygen></keygen>
+<input type="datetime" />
</body>
-</html>
+</html>

Powered by Google App Engine
This is Rietveld 408576698