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

Unified Diff: LayoutTests/fast/dom/shadow/input-with-validation.html

Issue 22852020: Only allow reprojecting shadows between ShadowRoots of the same type (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Delete another test Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/dom/shadow/input-with-validation-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/shadow/input-with-validation.html
diff --git a/LayoutTests/fast/dom/shadow/input-with-validation.html b/LayoutTests/fast/dom/shadow/input-with-validation.html
deleted file mode 100644
index 1b5d34e37e777404f8968010bc32bd12ff1f3ce1..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/shadow/input-with-validation.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-
-<p>Validation should be shown if Shadow DOM has a shadow element.</p>
-<form id='form' action="input-with-validation.html">
-<input id=password type=password required maxlength=20 title="Needs at least 8 letters.&#x0a;Should not be identical with the current password.">
-<input type=submit id=submit>
-</form>
-
-<script>
-if (window.internals)
- internals.settings.setAuthorShadowDOMForAnyElementEnabled(true);
-
-var input = document.getElementById('password');
-var shadowRoot = input.createShadowRoot();
-shadowRoot.innerHTML = "<shadow></shadow>";
-
-document.getElementById('submit').click();
-if (window.testRunner) {
- testRunner.waitUntilDone();
- setTimeout(function() {
- testRunner.notifyDone();
- }, 10);
-}
-</script>
-
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/dom/shadow/input-with-validation-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698