From 6c635b1ca71ab6b12d1e3ad2438457778554eabd Mon Sep 17 00:00:00 2001 From: Anjana Date: Mon, 26 Oct 2015 12:45:46 -0400 Subject: [PATCH] Fixes #253: Make script element IDL attributes reflect content attributes Make the .event and .htmlFor IDL attributes of HTMLScriptElement reflect the "event" and "for" content attributes. --- source | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/source b/source index 389fbfd6f62..81143ac93e3 100644 --- a/source +++ b/source @@ -111888,8 +111888,13 @@ if (s = prompt('What is your name?')) { attribute DOMString htmlFor; }; -

The event and htmlFor IDL attributes of the script - element must return the empty string on getting, and do nothing on setting.

+

The event IDL attribute of the + script element must reflect the element's + event content attribute.

+ +

The htmlFor IDL attribute of the + script element must reflect the element's + for content attribute.