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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadowdom-for-form-associated-element-useragent.html

Issue 935283002: Rename {Author,UserAgent}ShadowRoot to {Open,Closed}ShadowRoot. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix inspector tests Created 5 years, 10 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script src="../../../resources/js-test.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 5
6 <p>When a AuthorShadowRoot is added, UserAgentShadowRoot should exists as the ol dest Shadow Root.</p> 6 <p>When a OpenShadowRoot is added, ClosedShadowRoot should exists as the oldest Shadow Root.</p>
7 <div id='container'> 7 <div id='container'>
8 <form> 8 <form>
9 <select id='select'><option>hoge</option></select> 9 <select id='select'><option>hoge</option></select>
10 <output id='output'></output> 10 <output id='output'></output>
11 <keygen id='keygen'></keygen> 11 <keygen id='keygen'></keygen>
12 <fieldset id='fieldset'> 12 <fieldset id='fieldset'>
13 <input type="text"> 13 <input type="text">
14 <legend>hogehoge</legend> 14 <legend>hogehoge</legend>
15 </fieldset> 15 </fieldset>
16 </form> 16 </form>
(...skipping 27 matching lines...) Expand all
44 } 44 }
45 45
46 container.innerHTML = ""; 46 container.innerHTML = "";
47 } 47 }
48 48
49 test(); 49 test();
50 var successfullyParsed = true; 50 var successfullyParsed = true;
51 </script> 51 </script>
52 </body> 52 </body>
53 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698