summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoQuadraticRel.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoQuadraticRel.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoQuadraticRel.idl13
1 files changed, 7 insertions, 6 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoQuadraticRel.idl b/chromium/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoQuadraticRel.idl
index cfd7e87e0b8..a14cbe38c1d 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoQuadraticRel.idl
+++ b/chromium/third_party/WebKit/Source/core/svg/SVGPathSegCurvetoQuadraticRel.idl
@@ -24,10 +24,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-interface SVGPathSegCurvetoQuadraticRel : SVGPathSeg {
- [StrictTypeChecking] attribute float x;
- [StrictTypeChecking] attribute float y;
- [StrictTypeChecking] attribute float x1;
- [StrictTypeChecking] attribute float y1;
+[
+ TypeChecking=Interface|Nullable,
+] interface SVGPathSegCurvetoQuadraticRel : SVGPathSeg {
+ attribute float x;
+ attribute float y;
+ attribute float x1;
+ attribute float y1;
};
-