OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
4 * Copyright (C) 2011 Google Inc. All rights reserved. | 4 * Copyright (C) 2011 Google Inc. All rights reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 15 matching lines...) Expand all Loading... |
26 [Reflect] attribute DOMString hreflang; | 26 [Reflect] attribute DOMString hreflang; |
27 [Reflect] attribute DOMString media; | 27 [Reflect] attribute DOMString media; |
28 [Reflect] attribute DOMString rel; | 28 [Reflect] attribute DOMString rel; |
29 [Reflect] attribute DOMString rev; | 29 [Reflect] attribute DOMString rev; |
30 [CustomSetter] attribute DOMSettableTokenList sizes; | 30 [CustomSetter] attribute DOMSettableTokenList sizes; |
31 [Reflect] attribute DOMString target; | 31 [Reflect] attribute DOMString target; |
32 [Reflect] attribute DOMString type; | 32 [Reflect] attribute DOMString type; |
33 | 33 |
34 // DOM Level 2 Style | 34 // DOM Level 2 Style |
35 readonly attribute StyleSheet sheet; | 35 readonly attribute StyleSheet sheet; |
| 36 |
| 37 [EnabledAtRuntime=htmlImports] readonly attribute DocumentFragment import; |
36 }; | 38 }; |
37 | 39 |
OLD | NEW |