summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPathSegCurvetoCubicRel.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGPathSegCurvetoCubicRel.idl')
-rw-r--r--WebCore/svg/SVGPathSegCurvetoCubicRel.idl20
1 files changed, 7 insertions, 13 deletions
diff --git a/WebCore/svg/SVGPathSegCurvetoCubicRel.idl b/WebCore/svg/SVGPathSegCurvetoCubicRel.idl
index be6606d..7e9fb7f 100644
--- a/WebCore/svg/SVGPathSegCurvetoCubicRel.idl
+++ b/WebCore/svg/SVGPathSegCurvetoCubicRel.idl
@@ -22,23 +22,17 @@
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
+ */
module svg {
interface [Conditional=SVG] SVGPathSegCurvetoCubicRel : SVGPathSeg {
- attribute float x
- /*setter raises(DOMException)*/;
- attribute float y
- /*setter raises(DOMException)*/;
- attribute float x1
- /*setter raises(DOMException)*/;
- attribute float y1
- /*setter raises(DOMException)*/;
- attribute float x2
- /*setter raises(DOMException)*/;
- attribute float y2
- /*setter raises(DOMException)*/;
+ attribute [StrictTypeChecking] float x;
+ attribute [StrictTypeChecking] float y;
+ attribute [StrictTypeChecking] float x1;
+ attribute [StrictTypeChecking] float y1;
+ attribute [StrictTypeChecking] float x2;
+ attribute [StrictTypeChecking] float y2;
};
}