| 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>
|
|
|