• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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').createShadowRoot();
13    });
14  </script>
15</head>
16<body>
17  <webview id="noshadowroot"></webview>
18  <webview id="shadowroot"></webview>
19</body>
20</html>
21
22