summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGTests.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGTests.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGTests.idl9
1 files changed, 5 insertions, 4 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGTests.idl b/chromium/third_party/WebKit/Source/core/svg/SVGTests.idl
index 0842cc1831d..9e0f5a164a4 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGTests.idl
+++ b/chromium/third_party/WebKit/Source/core/svg/SVGTests.idl
@@ -24,14 +24,15 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// http://www.w3.org/TR/SVG2/types.html#InterfaceSVGTests
+
[
- NoInterfaceObject,
- LegacyImplementedInBaseClass
+ NoInterfaceObject, // Always used on target of 'implements'
] interface SVGTests {
+
readonly attribute SVGStringList requiredFeatures;
readonly attribute SVGStringList requiredExtensions;
readonly attribute SVGStringList systemLanguage;
- boolean hasExtension([Default=Undefined] optional DOMString extension);
+ boolean hasExtension(DOMString extension);
};
-