Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: tools/dom/scripts/generator.py

Issue 12095088: "Reverting 17940" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/html/svgelement_test.dart ('k') | tools/dom/scripts/htmldartgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/generator.py
diff --git a/tools/dom/scripts/generator.py b/tools/dom/scripts/generator.py
index 8e09d8fd218b9b9eca946dbced0142d050e0d637..65694934863c8184f142e1932b8423d8f43b3b27 100644
--- a/tools/dom/scripts/generator.py
+++ b/tools/dom/scripts/generator.py
@@ -26,8 +26,10 @@ _pure_interfaces = set([
'MediaQueryListListener',
'MutationCallback',
'NodeSelector',
+ 'SVGExternalResourcesRequired',
'SVGFilterPrimitiveStandardAttributes',
'SVGFitToViewBox',
+ 'SVGLangSpace',
'SVGLocatable',
'SVGTests',
'SVGTransformable',
@@ -652,6 +654,12 @@ dart2js_annotations = {
],
}
+# Placeholder to add experimental flag, implementation for this is
+# pending in a separate CL.
+dart_annotations = {
+ 'Element.webkitMatchesSelector': ['@Experimental'],
+}
+
_indexed_db_annotations = [
"@SupportedBrowser(SupportedBrowser.CHROME)",
"@SupportedBrowser(SupportedBrowser.FIREFOX, '15')",
@@ -679,12 +687,6 @@ _webkit_experimental_annotations = [
_history_annotations = _all_but_ie9_annotations
-_no_ie_annotations = [
- "@SupportedBrowser(SupportedBrowser.CHROME)",
- "@SupportedBrowser(SupportedBrowser.FIREFOX)",
- "@SupportedBrowser(SupportedBrowser.SAFARI)",
-]
-
_performance_annotations = [
"@SupportedBrowser(SupportedBrowser.CHROME)",
"@SupportedBrowser(SupportedBrowser.FIREFOX)",
@@ -696,8 +698,6 @@ _speech_recognition_annotations = [
"@Experimental",
]
-_svg_annotations = _all_but_ie9_annotations;
-
_web_sql_annotations = [
"@SupportedBrowser(SupportedBrowser.CHROME)",
"@SupportedBrowser(SupportedBrowser.SAFARI)",
@@ -734,9 +734,6 @@ dart_annotations = {
'DOMWindow.webkitNotifications': _webkit_experimental_annotations,
'DOMWindow.webkitRequestFileSystem': _file_system_annotations,
'DOMWindow.webkitResolveLocalFileSystemURL': _file_system_annotations,
- # Placeholder to add experimental flag, implementation for this is
- # pending in a separate CL.
- 'Element.webkitMatchesSelector': ['@Experimental()'],
'Element.webkitCreateShadowRoot': [
"@SupportedBrowser(SupportedBrowser.CHROME, '25')",
"@Experimental",
@@ -762,9 +759,21 @@ dart_annotations = {
"@SupportedBrowser(SupportedBrowser.SAFARI)",
],
'HTMLKeygenElement': _webkit_experimental_annotations,
- 'HTMLMeterElement': _no_ie_annotations,
- 'HTMLObjectElement': _no_ie_annotations,
- 'HTMLOutputElement': _no_ie_annotations,
+ 'HTMLMeterElement': [
+ "@SupportedBrowser(SupportedBrowser.CHROME)",
+ "@SupportedBrowser(SupportedBrowser.FIREFOX)",
+ "@SupportedBrowser(SupportedBrowser.SAFARI)",
+ ],
+ 'HTMLObjectElement': [
+ "@SupportedBrowser(SupportedBrowser.CHROME)",
+ "@SupportedBrowser(SupportedBrowser.FIREFOX)",
+ "@SupportedBrowser(SupportedBrowser.SAFARI)",
+ ],
+ 'HTMLOutputElement': [
+ "@SupportedBrowser(SupportedBrowser.CHROME)",
+ "@SupportedBrowser(SupportedBrowser.FIREFOX)",
+ "@SupportedBrowser(SupportedBrowser.SAFARI)",
+ ],
'HTMLProgressElement': _all_but_ie9_annotations,
'HTMLShadowElement': [
"@SupportedBrowser(SupportedBrowser.CHROME, '25')",
@@ -795,36 +804,6 @@ dart_annotations = {
'SpeechRecognitionError': _speech_recognition_annotations,
'SpeechRecognitionEvent': _speech_recognition_annotations,
'SpeechRecognitionResult': _speech_recognition_annotations,
- 'SVGAltGlyphElement': _no_ie_annotations,
- 'SVGAnimateElement': _no_ie_annotations,
- 'SVGAnimateMotionElement': _no_ie_annotations,
- 'SVGAnimateTransformElement': _no_ie_annotations,
- 'SVGFEBlendElement': _svg_annotations,
- 'SVGFEColorMatrixElement': _svg_annotations,
- 'SVGFEComponentTransferElement': _svg_annotations,
- 'SVGFEConvolveMatrixElement': _svg_annotations,
- 'SVGFEDiffuseLightingElement': _svg_annotations,
- 'SVGFEDisplacementMapElement': _svg_annotations,
- 'SVGFEDistantLightElement': _svg_annotations,
- 'SVGFEFloodElement': _svg_annotations,
- 'SVGFEFuncAElement': _svg_annotations,
- 'SVGFEFuncBElement': _svg_annotations,
- 'SVGFEFuncGElement': _svg_annotations,
- 'SVGFEFuncRElement': _svg_annotations,
- 'SVGFEGaussianBlurElement': _svg_annotations,
- 'SVGFEImageElement': _svg_annotations,
- 'SVGFEMergeElement': _svg_annotations,
- 'SVGFEMergeNodeElement': _svg_annotations,
- 'SVGFEMorphology': _svg_annotations,
- 'SVGFEOffsetElement': _svg_annotations,
- 'SVGFEPointLightElement': _svg_annotations,
- 'SVGFESpecularLightingElement': _svg_annotations,
- 'SVGFESpotLightElement': _svg_annotations,
- 'SVGFETileElement': _svg_annotations,
- 'SVGFETurbulenceElement': _svg_annotations,
- 'SVGFilterElement': _svg_annotations,
- 'SVGForeignObjectElement': _no_ie_annotations,
- 'SVGSetElement': _no_ie_annotations,
'SQLTransaction': _web_sql_annotations,
'SQLTransactionSync': _web_sql_annotations,
'WebGLRenderingContext': _webgl_annotations,
« no previous file with comments | « tests/html/svgelement_test.dart ('k') | tools/dom/scripts/htmldartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698