| Index: tools/dom/scripts/generator.py
|
| diff --git a/tools/dom/scripts/generator.py b/tools/dom/scripts/generator.py
|
| index 516e768572a66e9cff8c4f33f78020ab08761b42..35b42dbe1b07f8c00988f4980278a76b409258bf 100644
|
| --- a/tools/dom/scripts/generator.py
|
| +++ b/tools/dom/scripts/generator.py
|
| @@ -710,6 +710,12 @@ _web_sql_annotations = [
|
| "@Experimental",
|
| ]
|
|
|
| +_webgl_annotations = [
|
| + "@SupportedBrowser(SupportedBrowser.CHROME)",
|
| + "@SupportedBrowser(SupportedBrowser.FIREFOX)",
|
| + "@Experimental",
|
| +]
|
| +
|
| # Annotations to be placed on generated members.
|
| # The table is indexed as:
|
| # INTERFACE: annotations to be added to the interface declaration
|
| @@ -806,6 +812,7 @@ dart_annotations = {
|
| 'SpeechRecognitionResult': _speech_recognition_annotations,
|
| 'SQLTransaction': _web_sql_annotations,
|
| 'SQLTransactionSync': _web_sql_annotations,
|
| + 'WebGLRenderingContext': _webgl_annotations,
|
| 'WebKitCSSMatrix': _webkit_experimental_annotations,
|
| 'WebKitPoint': _webkit_experimental_annotations,
|
| 'WebSocket': _all_but_ie9_annotations,
|
|
|