| Index: tools/dom/scripts/systemhtml.py
|
| diff --git a/tools/dom/scripts/systemhtml.py b/tools/dom/scripts/systemhtml.py
|
| index 0ef461e0b852e47f2459b712ec5f9c4ee0252d92..81f1a71e7b99065b0aec0a5547db61e34160cd30 100644
|
| --- a/tools/dom/scripts/systemhtml.py
|
| +++ b/tools/dom/scripts/systemhtml.py
|
| @@ -260,6 +260,7 @@ _element_constructors = {
|
| 'indexed_db': {},
|
| 'svg': _svg_element_constructors,
|
| 'web_audio': {},
|
| + 'web_sql': {},
|
| }
|
|
|
| _factory_ctr_strings = {
|
| @@ -279,6 +280,10 @@ _factory_ctr_strings = {
|
| 'provider_name': 'document',
|
| 'constructor_name': '$dom_createElement'
|
| },
|
| + 'web_sql': {
|
| + 'provider_name': 'document',
|
| + 'constructor_name': '$dom_createElement'
|
| + },
|
| }
|
|
|
| def ElementConstructorInfos(typename, element_constructors,
|
|
|