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

Side by Side Diff: Source/WebKit/chromium/tests/data/shadow_dom_test.html

Issue 19906002: Move data/ directory from WebKit/chromium/tests into web/tests/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 5 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 * Copyright (c) 2013 The Chromium Authors. All rights reserved. Use of this
4 * source code is governed by a BSD-style license that can be found in the
5 * LICENSE file.
6 -->
7 <html>
8 <head>
9 <script type="text/javascript">
10 window.addEventListener('load', function(e) {
11 // Give one of the elements a shadow root.
12 document.getElementById('shadowroot').webkitCreateShadowRoot();
13 });
14 </script>
15 </head>
16 <body>
17 <webview id="noshadowroot"></webview>
18 <webview id="shadowroot"></webview>
19 </body>
20 </html>
21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698