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

Unified Diff: third_party/WebKit/LayoutTests/fast/html/clone-keygen.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/html/clone-keygen.html
diff --git a/third_party/WebKit/LayoutTests/fast/html/clone-keygen.html b/third_party/WebKit/LayoutTests/fast/html/clone-keygen.html
deleted file mode 100644
index ca0396d32f197bd5818a78c107bc1949044db88e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/html/clone-keygen.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-<style type="text/css">
-*::-webkit-keygen-select {
- color: purple;
- zoom: 1.5; /* to work around bug 57966 */
-}
-</style>
-</head>
-<body>
-<p>
-Tests that a cloned keygen has the right shadow pseudo ID. You should
-see two big keygens with purple text (they should look the same.)
-</p>
-<keygen id="k" style="display: block;">
-<div id="console"></div>
-<script>
-var k = document.querySelector('#k');
-var specialK = k.cloneNode();
-
-k.insertAdjacentElement('afterEnd', specialK);
-
-shouldBe('specialK.clientHeight', 'k.clientHeight');
-
-if (window.internals) {
- var kShadow = internals.shadowRoot(k);
- var cloneShadow = internals.shadowRoot(specialK);
- shouldBe('internals.shadowPseudoId(cloneShadow.firstChild)',
- 'internals.shadowPseudoId(kShadow.firstChild)');
-}
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698