summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGPathSegArcRel.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGPathSegArcRel.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGPathSegArcRel.idl19
1 files changed, 10 insertions, 9 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGPathSegArcRel.idl b/chromium/third_party/WebKit/Source/core/svg/SVGPathSegArcRel.idl
index d682c2c01bc..405a5c66e9b 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGPathSegArcRel.idl
+++ b/chromium/third_party/WebKit/Source/core/svg/SVGPathSegArcRel.idl
@@ -24,13 +24,14 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-interface SVGPathSegArcRel : SVGPathSeg {
- [StrictTypeChecking] attribute float x;
- [StrictTypeChecking] attribute float y;
- [StrictTypeChecking] attribute float r1;
- [StrictTypeChecking] attribute float r2;
- [StrictTypeChecking] attribute float angle;
- [StrictTypeChecking] attribute boolean largeArcFlag;
- [StrictTypeChecking] attribute boolean sweepFlag;
+[
+ TypeChecking=Interface|Nullable,
+] interface SVGPathSegArcRel : SVGPathSeg {
+ attribute float x;
+ attribute float y;
+ attribute float r1;
+ attribute float r2;
+ attribute float angle;
+ attribute boolean largeArcFlag;
+ attribute boolean sweepFlag;
};
-