OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <!-- | 2 <!-- |
3 * Copyright (c) 2013 The Chromium Authors. All rights reserved. Use of this | 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 | 4 * source code is governed by a BSD-style license that can be found in the |
5 * LICENSE file. | 5 * LICENSE file. |
6 --> | 6 --> |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 <script type="text/javascript"> | 9 <script type="text/javascript"> |
10 window.addEventListener('load', function(e) { | 10 window.addEventListener('load', function(e) { |
11 // Give one of the elements a shadow root. | 11 // Give one of the elements a shadow root. |
12 document.getElementById('shadowroot').webkitCreateShadowRoot(); | 12 document.getElementById('shadowroot').webkitCreateShadowRoot(); |
13 }); | 13 }); |
14 </script> | 14 </script> |
15 </head> | 15 </head> |
16 <body> | 16 <body> |
17 <webview id="noshadowroot"></webview> | 17 <webview id="noshadowroot"></webview> |
18 <webview id="shadowroot"></webview> | 18 <webview id="shadowroot"></webview> |
19 </body> | 19 </body> |
20 </html> | 20 </html> |
21 | 21 |
OLD | NEW |