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

Unified Diff: Source/core/svg/SVGElement.idl

Issue 303483005: [SVG2] Make ownerSVGElement and viewportElement nullable. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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: Source/core/svg/SVGElement.idl
diff --git a/Source/core/svg/SVGElement.idl b/Source/core/svg/SVGElement.idl
index 8ce9e7d0cdeddaaf537d4f488a009bc8e383571d..d18904f64126c1e08b4cb815a3abcb6cb18eca56 100644
--- a/Source/core/svg/SVGElement.idl
+++ b/Source/core/svg/SVGElement.idl
@@ -24,8 +24,8 @@
Custom=Wrap,
] interface SVGElement : Element {
attribute DOMString xmlbase;
- readonly attribute SVGSVGElement ownerSVGElement;
- readonly attribute SVGElement viewportElement;
+ [TypeChecking=Interface|Nullable] readonly attribute SVGSVGElement? ownerSVGElement;
+ [TypeChecking=Interface|Nullable] readonly attribute SVGElement? viewportElement;
fs 2014/05/26 13:05:42 Note: This extended attribute will not "do anythin
Erik Dahlström (inactive) 2014/05/26 13:13:35 I followed the lead from HTMLMediaElement.idl, whi
attribute DOMString xmllang;
attribute DOMString xmlspace;
« 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