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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/layout-tests-can-access-shadow.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/layout-tests-can-access-shadow.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/layout-tests-can-access-shadow.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/layout-tests-can-access-shadow.html
index aed236bdd1fdc688e554abd053322597fe4f0c24..6851797fb609031802a6f01a9ee6c9101c159848 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/layout-tests-can-access-shadow.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/layout-tests-can-access-shadow.html
@@ -4,7 +4,7 @@
<script src="../../../resources/js-test.js"></script>
</head>
<body>
-<keygen id="keys" />
+<progress id="progress" max=100></progress>
<p id="peas" />
<pre id="console">
This tests that layout tests can access shadow DOM.
@@ -13,8 +13,8 @@ This tests that layout tests can access shadow DOM.
<script>
if (window.internals) {
// Make assertions about a built-in shadow
- var keygen = document.getElementById('keys');
- var shadow = internals.shadowRoot(keygen);
+ var progress = document.getElementById('progress');
+ var shadow = internals.shadowRoot(progress);
shouldBe('shadow.nodeName', '"#document-fragment"');
// Shadow roots aren't elements, so accessing their shadow should throw.

Powered by Google App Engine
This is Rietveld 408576698