Chromium Code Reviews| Index: tools/dom/scripts/generator.py |
| diff --git a/tools/dom/scripts/generator.py b/tools/dom/scripts/generator.py |
| index 28d5ad46dc338b686aa77d74e2b9c5676f8337bb..73912b1b4dcee5b431b92b788b3158f174b29d0e 100644 |
| --- a/tools/dom/scripts/generator.py |
| +++ b/tools/dom/scripts/generator.py |
| @@ -635,6 +635,10 @@ _history_annotations = [ |
| # INTERFACE.MEMBER: annotation to be added to the member declaration |
| dart_annotations = { |
| 'DOMWindow.indexedDB': _indexed_db_annotations, |
| + 'Element.webkitCreateShadowRoot': [ |
| + "@SupportedBrowser(SupportedBrowser.CHROME, '25')", |
|
Emily Fortuna
2013/01/02 18:54:04
not safari as well?
blois
2013/01/02 21:28:41
Actually only Chrome with a flag.
|
| + "@Experimental()", |
| + ], |
| 'History.pushState': _history_annotations, |
| 'History.replaceState': _history_annotations, |
| 'HTMLContentElement': [ |
| @@ -683,6 +687,10 @@ dart_annotations = { |
| "@SupportedBrowser(SupportedBrowser.IE, '10')", |
| "@SupportedBrowser(SupportedBrowser.SAFARI)", |
| ], |
| + 'HTMLShadowElement': [ |
| + "@SupportedBrowser(SupportedBrowser.CHROME, '25')", |
| + "@Experimental()", |
| + ], |
| 'HTMLTrackElement': [ |
| "@SupportedBrowser(SupportedBrowser.CHROME)", |
| "@SupportedBrowser(SupportedBrowser.IE, '10')", |
| @@ -690,6 +698,10 @@ dart_annotations = { |
| ], |
| 'IDBFactory': _indexed_db_annotations, |
| 'IDBDatabase': _indexed_db_annotations, |
| + 'ShadowRoot': [ |
| + "@SupportedBrowser(SupportedBrowser.CHROME, '25')", |
| + "@Experimental()", |
| + ], |
| 'WorkerContext.indexedDB': _indexed_db_annotations, |
| } |