Chromium Code Reviews| Index: tools/dom/scripts/systemhtml.py |
| diff --git a/tools/dom/scripts/systemhtml.py b/tools/dom/scripts/systemhtml.py |
| index 0f2de534723b14da1610e2e5f90d3b7a71120bac..97584a10289c5ea173b1b338003ae44ba9205d98 100644 |
| --- a/tools/dom/scripts/systemhtml.py |
| +++ b/tools/dom/scripts/systemhtml.py |
| @@ -260,6 +260,7 @@ _element_constructors = { |
| 'html': _html_element_constructors, |
| 'indexed_db': {}, |
| 'svg': _svg_element_constructors, |
| + 'typeddata': {}, |
| 'web_audio': {}, |
| 'web_sql': {}, |
| } |
| @@ -277,6 +278,10 @@ _factory_ctr_strings = { |
| 'provider_name': '_SvgElementFactoryProvider', |
| 'constructor_name': 'createSvgElement_tag', |
| }, |
| + 'typeddata': { |
| + 'provider_name': 'document', |
|
Anton Muhin
2013/03/19 12:31:24
why?
|
| + 'constructor_name': '$dom_createElement' |
| + }, |
| 'web_audio': { |
| 'provider_name': 'document', |
| 'constructor_name': '$dom_createElement' |