Further refinement of style interfaces

This commit is contained in:
vidur%netscape.com 1998-09-23 20:58:31 +00:00
Родитель 6637173edf
Коммит 91f67cda29
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -1,8 +1,10 @@
interface CSSStyleDeclaration {
wstring getPropertyValue(in wstring propertyName);
wstring getPropertyWeight(in wstring propertyName);
void setProperty(in wstring propertyName, in wstring value, in wstring weight);
wstring getPropertyPriority(in wstring propertyName);
void setProperty(in wstring propertyName, in wstring value, in wstring priority);
readonly attribute unsigned long length;
wstring item(in unsigned long index); /* Returns property name */
attribute wstring azimuth;
attribute wstring background;

Просмотреть файл

@ -5,7 +5,6 @@
readonly attribute wstring href;
readonly attribute StyleSheetCollection imports;
readonly attribute MediaGroupCollection mediaGroups;
readonly attribute CSSStyleRuleCollection rules;
unsigned long addRule(in wstring selector, in wstring declaration, in unsigned long index);