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

Unified Diff: third_party/WebKit/Source/core/svg/SVGGraphicsElement.idl

Issue 2714123003: Add comment about SVGGraphicsElement.{nearest,farthest}ViewportElement (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGGraphicsElement.idl
diff --git a/third_party/WebKit/Source/core/svg/SVGGraphicsElement.idl b/third_party/WebKit/Source/core/svg/SVGGraphicsElement.idl
index 773aa51ef67d2129413055bca4e80a24e6b7527c..508de310653a02255f597b5eb5a7623486766096 100644
--- a/third_party/WebKit/Source/core/svg/SVGGraphicsElement.idl
+++ b/third_party/WebKit/Source/core/svg/SVGGraphicsElement.idl
@@ -33,12 +33,15 @@
interface SVGGraphicsElement : SVGElement {
[Measure] readonly attribute SVGAnimatedTransformList transform;
- [MeasureAs=SVGLocatableNearestViewportElement] readonly attribute SVGElement nearestViewportElement;
- [MeasureAs=SVGLocatableFarthestViewportElement] readonly attribute SVGElement farthestViewportElement;
-
[ImplementedAs=getBBoxFromJavascript] SVGRect getBBox();
[ImplementedAs=getCTMFromJavascript] SVGMatrix getCTM();
[ImplementedAs=getScreenCTMFromJavascript] SVGMatrix getScreenCTM();
+
+ // The following two properties existed on SVGLocatable in SVG
+ // 1.1, but was removed in SVG2.
+ // https://www.w3.org/TR/SVG11/types.html#InterfaceSVGLocatable
+ [MeasureAs=SVGLocatableNearestViewportElement] readonly attribute SVGElement nearestViewportElement;
+ [MeasureAs=SVGLocatableFarthestViewportElement] readonly attribute SVGElement farthestViewportElement;
};
SVGGraphicsElement implements SVGTests;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698