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

Side by Side Diff: LayoutTests/fast/dom/shadow/input-with-validation-expected.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <p>Validation should be shown if Shadow DOM has a shadow element.</p>
4 <form id='form' action="input-with-validation.html">
5 <input id=password type=password required maxlength=20 title="Needs at least 8 l etters.&#x0a;Should not be identical with the current password.">
6 <input type=submit id=submit>
7 </form>
8
9 <script>
10 var input = document.getElementById('password');
11
12 document.getElementById('submit').click();
13 if (window.testRunner) {
14 testRunner.waitUntilDone();
15 setTimeout(function() {
16 testRunner.notifyDone();
17 }, 10);
18 }
19 </script>
20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698