summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLDocument.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/HTMLDocument.idl')
-rw-r--r--Source/WebCore/html/HTMLDocument.idl18
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/WebCore/html/HTMLDocument.idl b/Source/WebCore/html/HTMLDocument.idl
index a7a6bcda6..dd020e2c5 100644
--- a/Source/WebCore/html/HTMLDocument.idl
+++ b/Source/WebCore/html/HTMLDocument.idl
@@ -21,9 +21,9 @@
module html {
interface [
- HasOverridingNameGetter
+ CustomNamedGetter
] HTMLDocument : Document {
- [Custom, NoCPPCustom] void open();
+ [JSCustom, V8Custom] void open();
void close();
[Custom] void write(in [Optional=CallWithDefaultValue] DOMString text);
[Custom] void writeln(in [Optional=CallWithDefaultValue] DOMString text);
@@ -48,19 +48,19 @@ module html {
readonly attribute long width;
readonly attribute long height;
#endif
- attribute [TreatNullAs=EmptyString] DOMString dir;
- attribute [TreatNullAs=EmptyString] DOMString designMode;
+ attribute [TreatNullAs=NullString] DOMString dir;
+ attribute [TreatNullAs=NullString] DOMString designMode;
readonly attribute DOMString compatMode;
readonly attribute Element activeElement;
boolean hasFocus();
// Deprecated attributes
- attribute [TreatNullAs=EmptyString] DOMString bgColor;
- attribute [TreatNullAs=EmptyString] DOMString fgColor;
- attribute [TreatNullAs=EmptyString] DOMString alinkColor;
- attribute [TreatNullAs=EmptyString] DOMString linkColor;
- attribute [TreatNullAs=EmptyString] DOMString vlinkColor;
+ attribute [TreatNullAs=NullString] DOMString bgColor;
+ attribute [TreatNullAs=NullString] DOMString fgColor;
+ attribute [TreatNullAs=NullString] DOMString alinkColor;
+ attribute [TreatNullAs=NullString] DOMString linkColor;
+ attribute [TreatNullAs=NullString] DOMString vlinkColor;
};
}