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

Unified Diff: third_party/WebCore/svg/SVGViewSpec.idl

Issue 10513011: Roll IDL to multivm@576 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | « third_party/WebCore/svg/SVGUnitTypes.idl ('k') | third_party/WebCore/svg/SVGZoomAndPan.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/svg/SVGViewSpec.idl
diff --git a/third_party/WebCore/svg/SVGViewSpec.idl b/third_party/WebCore/svg/SVGViewSpec.idl
index e4ba46b2372f41d8454e5ce47b072f614215aa66..ec545d14bdd5e641ddc8775069abb504f1d95376 100644
--- a/third_party/WebCore/svg/SVGViewSpec.idl
+++ b/third_party/WebCore/svg/SVGViewSpec.idl
@@ -25,16 +25,26 @@
module svg {
+ // SVGViewSpec intentionally doesn't inherit from SVGZoomAndPan & SVGFitToViewBox on the IDLs.
+ // It would require that any of those classes would be RefCounted, and we want to avoid that.
interface [
- Conditional=SVG
- ] SVGViewSpec : SVGZoomAndPan, SVGFitToViewBox
- {
+ Conditional=SVG,
+ JSGenerateToJSObject
+ ] SVGViewSpec {
readonly attribute SVGTransformList transform;
- readonly attribute SVGElement viewTarget;
- readonly attribute DOMString viewBoxString;
- readonly attribute DOMString preserveAspectRatioString;
- readonly attribute DOMString transformString;
- readonly attribute DOMString viewTargetString;
+ readonly attribute SVGElement viewTarget;
+ readonly attribute DOMString viewBoxString;
+ readonly attribute DOMString preserveAspectRatioString;
+ readonly attribute DOMString transformString;
+ readonly attribute DOMString viewTargetString;
+
+ // SVGZoomAndPan
+ attribute unsigned short zoomAndPan
+ setter raises(DOMException);
+
+ // SVGFitToViewBox
+ readonly attribute SVGAnimatedRect viewBox;
+ readonly attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio;
};
}
« no previous file with comments | « third_party/WebCore/svg/SVGUnitTypes.idl ('k') | third_party/WebCore/svg/SVGZoomAndPan.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698