updated to new version of CSSOM interfaces

git-svn-id: svn://10.0.0.236/trunk@15329 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
peterl%netscape.com
1998-11-26 01:20:04 +00:00
parent 226561ff6f
commit bf2d444100
45 changed files with 6506 additions and 5123 deletions

View File

@@ -32,6 +32,8 @@
class nsIDOMStyleSheet : public nsISupports {
public:
NS_IMETHOD GetType(nsString& aType)=0;
NS_IMETHOD GetDisabled(PRBool* aDisabled)=0;
NS_IMETHOD SetDisabled(PRBool aDisabled)=0;
@@ -40,6 +42,7 @@ public:
#define NS_DECL_IDOMSTYLESHEET \
NS_IMETHOD GetType(nsString& aType); \
NS_IMETHOD GetDisabled(PRBool* aDisabled); \
NS_IMETHOD SetDisabled(PRBool aDisabled); \
NS_IMETHOD GetReadOnly(PRBool* aReadOnly); \
@@ -47,6 +50,7 @@ public:
#define NS_FORWARD_IDOMSTYLESHEET(_to) \
NS_IMETHOD GetType(nsString& aType) { return _to##GetType(aType); } \
NS_IMETHOD GetDisabled(PRBool* aDisabled) { return _to##GetDisabled(aDisabled); } \
NS_IMETHOD SetDisabled(PRBool aDisabled) { return _to##SetDisabled(aDisabled); } \
NS_IMETHOD GetReadOnly(PRBool* aReadOnly) { return _to##GetReadOnly(aReadOnly); } \

View File

@@ -16,9 +16,12 @@
# This is a list of local files which get copied to the mozilla:dist:dom directory
#
nsIDOMCSS2Properties.h
nsIDOMCSSFontFaceRule.h
nsIDOMCSSImportRule.h
nsIDOMCSSMediaRule.h
nsIDOMCSSPageRule.h
nsIDOMCSSPageRule.h
nsIDOMCSSRule.h
nsIDOMCSSStyleDeclaration.h
nsIDOMCSSStyleRule.h
nsIDOMCSSStyleRuleCollection.h

View File

@@ -25,13 +25,16 @@ include $(DEPTH)/config/autoconf.mk
DEFINES += -D_IMPL_NS_DOM
EXPORTS = \
nsIDOMCSSFontFaceRule.h \
nsIDOMCSSMediaRule.h \
nsIDOMCSSPageRule.h \
nsIDOMCSSStyleDeclaration.h \
nsIDOMCSSStyleRule.h \
nsIDOMCSSStyleRuleCollection.h \
nsIDOMCSSStyleRuleSimple.h \
nsIDOMCSS2Properties.h \
nsIDOMCSSFontFaceRule.h \
nsIDOMCSSImportRule.h \
nsIDOMCSSMediaRule.h \
nsIDOMCSSPageRule.h \
nsIDOMCSSRule.h \
nsIDOMCSSStyleDeclaration.h \
nsIDOMCSSStyleRule.h \
nsIDOMCSSStyleRuleCollection.h \
nsIDOMCSSStyleRuleSimple.h \
nsIDOMCSSStyleSheet.h \
$(NULL)

View File

@@ -20,14 +20,17 @@ IGNORE_MANIFEST=1
DEFINES=-D_IMPL_NS_DOM
EXPORTS= \
nsIDOMCSSFontFaceRule.h \
nsIDOMCSSMediaRule.h \
nsIDOMCSSPageRule.h \
nsIDOMCSSStyleDeclaration.h \
nsIDOMCSSStyleRule.h \
nsIDOMCSSStyleRuleCollection.h \
nsIDOMCSSStyleRuleSimple.h \
nsIDOMCSSStyleSheet.h
nsIDOMCSS2Properties.h \
nsIDOMCSSFontFaceRule.h \
nsIDOMCSSImportRule.h \
nsIDOMCSSMediaRule.h \
nsIDOMCSSPageRule.h \
nsIDOMCSSRule.h \
nsIDOMCSSStyleDeclaration.h \
nsIDOMCSSStyleRule.h \
nsIDOMCSSStyleRuleCollection.h \
nsIDOMCSSStyleSheet.h \
nsIDOMCSSUnknownRule.h
MODULE=dom

View File

@@ -0,0 +1,910 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/* AUTO-GENERATED. DO NOT EDIT!!! */
#ifndef nsIDOMCSS2Properties_h__
#define nsIDOMCSS2Properties_h__
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
#include "nsIDOMCSSStyleDeclaration.h"
#define NS_IDOMCSS2PROPERTIES_IID \
{ 0xa6cf90d1, 0x15b3, 0x11d2, \
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } }
class nsIDOMCSS2Properties : public nsIDOMCSSStyleDeclaration {
public:
NS_IMETHOD GetAzimuth(nsString& aAzimuth)=0;
NS_IMETHOD SetAzimuth(const nsString& aAzimuth)=0;
NS_IMETHOD GetBackground(nsString& aBackground)=0;
NS_IMETHOD SetBackground(const nsString& aBackground)=0;
NS_IMETHOD GetBackgroundAttachment(nsString& aBackgroundAttachment)=0;
NS_IMETHOD SetBackgroundAttachment(const nsString& aBackgroundAttachment)=0;
NS_IMETHOD GetBackgroundColor(nsString& aBackgroundColor)=0;
NS_IMETHOD SetBackgroundColor(const nsString& aBackgroundColor)=0;
NS_IMETHOD GetBackgroundImage(nsString& aBackgroundImage)=0;
NS_IMETHOD SetBackgroundImage(const nsString& aBackgroundImage)=0;
NS_IMETHOD GetBackgroundPosition(nsString& aBackgroundPosition)=0;
NS_IMETHOD SetBackgroundPosition(const nsString& aBackgroundPosition)=0;
NS_IMETHOD GetBackgroundRepeat(nsString& aBackgroundRepeat)=0;
NS_IMETHOD SetBackgroundRepeat(const nsString& aBackgroundRepeat)=0;
NS_IMETHOD GetBorder(nsString& aBorder)=0;
NS_IMETHOD SetBorder(const nsString& aBorder)=0;
NS_IMETHOD GetBorderCollapse(nsString& aBorderCollapse)=0;
NS_IMETHOD SetBorderCollapse(const nsString& aBorderCollapse)=0;
NS_IMETHOD GetBorderColor(nsString& aBorderColor)=0;
NS_IMETHOD SetBorderColor(const nsString& aBorderColor)=0;
NS_IMETHOD GetBorderSpacing(nsString& aBorderSpacing)=0;
NS_IMETHOD SetBorderSpacing(const nsString& aBorderSpacing)=0;
NS_IMETHOD GetBorderStyle(nsString& aBorderStyle)=0;
NS_IMETHOD SetBorderStyle(const nsString& aBorderStyle)=0;
NS_IMETHOD GetBorderTop(nsString& aBorderTop)=0;
NS_IMETHOD SetBorderTop(const nsString& aBorderTop)=0;
NS_IMETHOD GetBorderRight(nsString& aBorderRight)=0;
NS_IMETHOD SetBorderRight(const nsString& aBorderRight)=0;
NS_IMETHOD GetBorderBottom(nsString& aBorderBottom)=0;
NS_IMETHOD SetBorderBottom(const nsString& aBorderBottom)=0;
NS_IMETHOD GetBorderLeft(nsString& aBorderLeft)=0;
NS_IMETHOD SetBorderLeft(const nsString& aBorderLeft)=0;
NS_IMETHOD GetBorderTopColor(nsString& aBorderTopColor)=0;
NS_IMETHOD SetBorderTopColor(const nsString& aBorderTopColor)=0;
NS_IMETHOD GetBorderRightColor(nsString& aBorderRightColor)=0;
NS_IMETHOD SetBorderRightColor(const nsString& aBorderRightColor)=0;
NS_IMETHOD GetBorderBottomColor(nsString& aBorderBottomColor)=0;
NS_IMETHOD SetBorderBottomColor(const nsString& aBorderBottomColor)=0;
NS_IMETHOD GetBorderLeftColor(nsString& aBorderLeftColor)=0;
NS_IMETHOD SetBorderLeftColor(const nsString& aBorderLeftColor)=0;
NS_IMETHOD GetBorderTopStyle(nsString& aBorderTopStyle)=0;
NS_IMETHOD SetBorderTopStyle(const nsString& aBorderTopStyle)=0;
NS_IMETHOD GetBorderRightStyle(nsString& aBorderRightStyle)=0;
NS_IMETHOD SetBorderRightStyle(const nsString& aBorderRightStyle)=0;
NS_IMETHOD GetBorderBottomStyle(nsString& aBorderBottomStyle)=0;
NS_IMETHOD SetBorderBottomStyle(const nsString& aBorderBottomStyle)=0;
NS_IMETHOD GetBorderLeftStyle(nsString& aBorderLeftStyle)=0;
NS_IMETHOD SetBorderLeftStyle(const nsString& aBorderLeftStyle)=0;
NS_IMETHOD GetBorderTopWidth(nsString& aBorderTopWidth)=0;
NS_IMETHOD SetBorderTopWidth(const nsString& aBorderTopWidth)=0;
NS_IMETHOD GetBorderRightWidth(nsString& aBorderRightWidth)=0;
NS_IMETHOD SetBorderRightWidth(const nsString& aBorderRightWidth)=0;
NS_IMETHOD GetBorderBottomWidth(nsString& aBorderBottomWidth)=0;
NS_IMETHOD SetBorderBottomWidth(const nsString& aBorderBottomWidth)=0;
NS_IMETHOD GetBorderLeftWidth(nsString& aBorderLeftWidth)=0;
NS_IMETHOD SetBorderLeftWidth(const nsString& aBorderLeftWidth)=0;
NS_IMETHOD GetBorderWidth(nsString& aBorderWidth)=0;
NS_IMETHOD SetBorderWidth(const nsString& aBorderWidth)=0;
NS_IMETHOD GetBottom(nsString& aBottom)=0;
NS_IMETHOD SetBottom(const nsString& aBottom)=0;
NS_IMETHOD GetCaptionSide(nsString& aCaptionSide)=0;
NS_IMETHOD SetCaptionSide(const nsString& aCaptionSide)=0;
NS_IMETHOD GetClear(nsString& aClear)=0;
NS_IMETHOD SetClear(const nsString& aClear)=0;
NS_IMETHOD GetClip(nsString& aClip)=0;
NS_IMETHOD SetClip(const nsString& aClip)=0;
NS_IMETHOD GetColor(nsString& aColor)=0;
NS_IMETHOD SetColor(const nsString& aColor)=0;
NS_IMETHOD GetContent(nsString& aContent)=0;
NS_IMETHOD SetContent(const nsString& aContent)=0;
NS_IMETHOD GetCounterIncrement(nsString& aCounterIncrement)=0;
NS_IMETHOD SetCounterIncrement(const nsString& aCounterIncrement)=0;
NS_IMETHOD GetCounterReset(nsString& aCounterReset)=0;
NS_IMETHOD SetCounterReset(const nsString& aCounterReset)=0;
NS_IMETHOD GetCue(nsString& aCue)=0;
NS_IMETHOD SetCue(const nsString& aCue)=0;
NS_IMETHOD GetCueAfter(nsString& aCueAfter)=0;
NS_IMETHOD SetCueAfter(const nsString& aCueAfter)=0;
NS_IMETHOD GetCueBefore(nsString& aCueBefore)=0;
NS_IMETHOD SetCueBefore(const nsString& aCueBefore)=0;
NS_IMETHOD GetCursor(nsString& aCursor)=0;
NS_IMETHOD SetCursor(const nsString& aCursor)=0;
NS_IMETHOD GetDirection(nsString& aDirection)=0;
NS_IMETHOD SetDirection(const nsString& aDirection)=0;
NS_IMETHOD GetDisplay(nsString& aDisplay)=0;
NS_IMETHOD SetDisplay(const nsString& aDisplay)=0;
NS_IMETHOD GetElevation(nsString& aElevation)=0;
NS_IMETHOD SetElevation(const nsString& aElevation)=0;
NS_IMETHOD GetEmptyCells(nsString& aEmptyCells)=0;
NS_IMETHOD SetEmptyCells(const nsString& aEmptyCells)=0;
NS_IMETHOD GetCssFloat(nsString& aCssFloat)=0;
NS_IMETHOD SetCssFloat(const nsString& aCssFloat)=0;
NS_IMETHOD GetFont(nsString& aFont)=0;
NS_IMETHOD SetFont(const nsString& aFont)=0;
NS_IMETHOD GetFontFamily(nsString& aFontFamily)=0;
NS_IMETHOD SetFontFamily(const nsString& aFontFamily)=0;
NS_IMETHOD GetFontSize(nsString& aFontSize)=0;
NS_IMETHOD SetFontSize(const nsString& aFontSize)=0;
NS_IMETHOD GetFontSizeAdjust(nsString& aFontSizeAdjust)=0;
NS_IMETHOD SetFontSizeAdjust(const nsString& aFontSizeAdjust)=0;
NS_IMETHOD GetFontStretch(nsString& aFontStretch)=0;
NS_IMETHOD SetFontStretch(const nsString& aFontStretch)=0;
NS_IMETHOD GetFontStyle(nsString& aFontStyle)=0;
NS_IMETHOD SetFontStyle(const nsString& aFontStyle)=0;
NS_IMETHOD GetFontVariant(nsString& aFontVariant)=0;
NS_IMETHOD SetFontVariant(const nsString& aFontVariant)=0;
NS_IMETHOD GetFontWeight(nsString& aFontWeight)=0;
NS_IMETHOD SetFontWeight(const nsString& aFontWeight)=0;
NS_IMETHOD GetHeight(nsString& aHeight)=0;
NS_IMETHOD SetHeight(const nsString& aHeight)=0;
NS_IMETHOD GetLeft(nsString& aLeft)=0;
NS_IMETHOD SetLeft(const nsString& aLeft)=0;
NS_IMETHOD GetLetterSpacing(nsString& aLetterSpacing)=0;
NS_IMETHOD SetLetterSpacing(const nsString& aLetterSpacing)=0;
NS_IMETHOD GetLineHeight(nsString& aLineHeight)=0;
NS_IMETHOD SetLineHeight(const nsString& aLineHeight)=0;
NS_IMETHOD GetListStyle(nsString& aListStyle)=0;
NS_IMETHOD SetListStyle(const nsString& aListStyle)=0;
NS_IMETHOD GetListStyleImage(nsString& aListStyleImage)=0;
NS_IMETHOD SetListStyleImage(const nsString& aListStyleImage)=0;
NS_IMETHOD GetListStylePosition(nsString& aListStylePosition)=0;
NS_IMETHOD SetListStylePosition(const nsString& aListStylePosition)=0;
NS_IMETHOD GetListStyleType(nsString& aListStyleType)=0;
NS_IMETHOD SetListStyleType(const nsString& aListStyleType)=0;
NS_IMETHOD GetMargin(nsString& aMargin)=0;
NS_IMETHOD SetMargin(const nsString& aMargin)=0;
NS_IMETHOD GetMarginTop(nsString& aMarginTop)=0;
NS_IMETHOD SetMarginTop(const nsString& aMarginTop)=0;
NS_IMETHOD GetMarginRight(nsString& aMarginRight)=0;
NS_IMETHOD SetMarginRight(const nsString& aMarginRight)=0;
NS_IMETHOD GetMarginBottom(nsString& aMarginBottom)=0;
NS_IMETHOD SetMarginBottom(const nsString& aMarginBottom)=0;
NS_IMETHOD GetMarginLeft(nsString& aMarginLeft)=0;
NS_IMETHOD SetMarginLeft(const nsString& aMarginLeft)=0;
NS_IMETHOD GetMarkerOffset(nsString& aMarkerOffset)=0;
NS_IMETHOD SetMarkerOffset(const nsString& aMarkerOffset)=0;
NS_IMETHOD GetMarks(nsString& aMarks)=0;
NS_IMETHOD SetMarks(const nsString& aMarks)=0;
NS_IMETHOD GetMaxHeight(nsString& aMaxHeight)=0;
NS_IMETHOD SetMaxHeight(const nsString& aMaxHeight)=0;
NS_IMETHOD GetMaxWidth(nsString& aMaxWidth)=0;
NS_IMETHOD SetMaxWidth(const nsString& aMaxWidth)=0;
NS_IMETHOD GetMinHeight(nsString& aMinHeight)=0;
NS_IMETHOD SetMinHeight(const nsString& aMinHeight)=0;
NS_IMETHOD GetMinWidth(nsString& aMinWidth)=0;
NS_IMETHOD SetMinWidth(const nsString& aMinWidth)=0;
NS_IMETHOD GetOrphans(nsString& aOrphans)=0;
NS_IMETHOD SetOrphans(const nsString& aOrphans)=0;
NS_IMETHOD GetOutline(nsString& aOutline)=0;
NS_IMETHOD SetOutline(const nsString& aOutline)=0;
NS_IMETHOD GetOutlineColor(nsString& aOutlineColor)=0;
NS_IMETHOD SetOutlineColor(const nsString& aOutlineColor)=0;
NS_IMETHOD GetOutlineStyle(nsString& aOutlineStyle)=0;
NS_IMETHOD SetOutlineStyle(const nsString& aOutlineStyle)=0;
NS_IMETHOD GetOutlineWidth(nsString& aOutlineWidth)=0;
NS_IMETHOD SetOutlineWidth(const nsString& aOutlineWidth)=0;
NS_IMETHOD GetOverflow(nsString& aOverflow)=0;
NS_IMETHOD SetOverflow(const nsString& aOverflow)=0;
NS_IMETHOD GetPadding(nsString& aPadding)=0;
NS_IMETHOD SetPadding(const nsString& aPadding)=0;
NS_IMETHOD GetPaddingTop(nsString& aPaddingTop)=0;
NS_IMETHOD SetPaddingTop(const nsString& aPaddingTop)=0;
NS_IMETHOD GetPaddingRight(nsString& aPaddingRight)=0;
NS_IMETHOD SetPaddingRight(const nsString& aPaddingRight)=0;
NS_IMETHOD GetPaddingBottom(nsString& aPaddingBottom)=0;
NS_IMETHOD SetPaddingBottom(const nsString& aPaddingBottom)=0;
NS_IMETHOD GetPaddingLeft(nsString& aPaddingLeft)=0;
NS_IMETHOD SetPaddingLeft(const nsString& aPaddingLeft)=0;
NS_IMETHOD GetPage(nsString& aPage)=0;
NS_IMETHOD SetPage(const nsString& aPage)=0;
NS_IMETHOD GetPageBreakAfter(nsString& aPageBreakAfter)=0;
NS_IMETHOD SetPageBreakAfter(const nsString& aPageBreakAfter)=0;
NS_IMETHOD GetPageBreakBefore(nsString& aPageBreakBefore)=0;
NS_IMETHOD SetPageBreakBefore(const nsString& aPageBreakBefore)=0;
NS_IMETHOD GetPageBreakInside(nsString& aPageBreakInside)=0;
NS_IMETHOD SetPageBreakInside(const nsString& aPageBreakInside)=0;
NS_IMETHOD GetPause(nsString& aPause)=0;
NS_IMETHOD SetPause(const nsString& aPause)=0;
NS_IMETHOD GetPauseAfter(nsString& aPauseAfter)=0;
NS_IMETHOD SetPauseAfter(const nsString& aPauseAfter)=0;
NS_IMETHOD GetPauseBefore(nsString& aPauseBefore)=0;
NS_IMETHOD SetPauseBefore(const nsString& aPauseBefore)=0;
NS_IMETHOD GetPitch(nsString& aPitch)=0;
NS_IMETHOD SetPitch(const nsString& aPitch)=0;
NS_IMETHOD GetPitchRange(nsString& aPitchRange)=0;
NS_IMETHOD SetPitchRange(const nsString& aPitchRange)=0;
NS_IMETHOD GetPlayDuring(nsString& aPlayDuring)=0;
NS_IMETHOD SetPlayDuring(const nsString& aPlayDuring)=0;
NS_IMETHOD GetPosition(nsString& aPosition)=0;
NS_IMETHOD SetPosition(const nsString& aPosition)=0;
NS_IMETHOD GetQuotes(nsString& aQuotes)=0;
NS_IMETHOD SetQuotes(const nsString& aQuotes)=0;
NS_IMETHOD GetRichness(nsString& aRichness)=0;
NS_IMETHOD SetRichness(const nsString& aRichness)=0;
NS_IMETHOD GetRight(nsString& aRight)=0;
NS_IMETHOD SetRight(const nsString& aRight)=0;
NS_IMETHOD GetSize(nsString& aSize)=0;
NS_IMETHOD SetSize(const nsString& aSize)=0;
NS_IMETHOD GetSpeak(nsString& aSpeak)=0;
NS_IMETHOD SetSpeak(const nsString& aSpeak)=0;
NS_IMETHOD GetSpeakHeader(nsString& aSpeakHeader)=0;
NS_IMETHOD SetSpeakHeader(const nsString& aSpeakHeader)=0;
NS_IMETHOD GetSpeakNumeral(nsString& aSpeakNumeral)=0;
NS_IMETHOD SetSpeakNumeral(const nsString& aSpeakNumeral)=0;
NS_IMETHOD GetSpeakPunctuation(nsString& aSpeakPunctuation)=0;
NS_IMETHOD SetSpeakPunctuation(const nsString& aSpeakPunctuation)=0;
NS_IMETHOD GetSpeechRate(nsString& aSpeechRate)=0;
NS_IMETHOD SetSpeechRate(const nsString& aSpeechRate)=0;
NS_IMETHOD GetStress(nsString& aStress)=0;
NS_IMETHOD SetStress(const nsString& aStress)=0;
NS_IMETHOD GetTableLayout(nsString& aTableLayout)=0;
NS_IMETHOD SetTableLayout(const nsString& aTableLayout)=0;
NS_IMETHOD GetTextAlign(nsString& aTextAlign)=0;
NS_IMETHOD SetTextAlign(const nsString& aTextAlign)=0;
NS_IMETHOD GetTextDecoration(nsString& aTextDecoration)=0;
NS_IMETHOD SetTextDecoration(const nsString& aTextDecoration)=0;
NS_IMETHOD GetTextIndent(nsString& aTextIndent)=0;
NS_IMETHOD SetTextIndent(const nsString& aTextIndent)=0;
NS_IMETHOD GetTextShadow(nsString& aTextShadow)=0;
NS_IMETHOD SetTextShadow(const nsString& aTextShadow)=0;
NS_IMETHOD GetTextTransform(nsString& aTextTransform)=0;
NS_IMETHOD SetTextTransform(const nsString& aTextTransform)=0;
NS_IMETHOD GetTop(nsString& aTop)=0;
NS_IMETHOD SetTop(const nsString& aTop)=0;
NS_IMETHOD GetUnicodeBidi(nsString& aUnicodeBidi)=0;
NS_IMETHOD SetUnicodeBidi(const nsString& aUnicodeBidi)=0;
NS_IMETHOD GetVerticalAlign(nsString& aVerticalAlign)=0;
NS_IMETHOD SetVerticalAlign(const nsString& aVerticalAlign)=0;
NS_IMETHOD GetVisibility(nsString& aVisibility)=0;
NS_IMETHOD SetVisibility(const nsString& aVisibility)=0;
NS_IMETHOD GetVoiceFamily(nsString& aVoiceFamily)=0;
NS_IMETHOD SetVoiceFamily(const nsString& aVoiceFamily)=0;
NS_IMETHOD GetVolume(nsString& aVolume)=0;
NS_IMETHOD SetVolume(const nsString& aVolume)=0;
NS_IMETHOD GetWhiteSpace(nsString& aWhiteSpace)=0;
NS_IMETHOD SetWhiteSpace(const nsString& aWhiteSpace)=0;
NS_IMETHOD GetWidows(nsString& aWidows)=0;
NS_IMETHOD SetWidows(const nsString& aWidows)=0;
NS_IMETHOD GetWidth(nsString& aWidth)=0;
NS_IMETHOD SetWidth(const nsString& aWidth)=0;
NS_IMETHOD GetWordSpacing(nsString& aWordSpacing)=0;
NS_IMETHOD SetWordSpacing(const nsString& aWordSpacing)=0;
NS_IMETHOD GetZIndex(nsString& aZIndex)=0;
NS_IMETHOD SetZIndex(const nsString& aZIndex)=0;
NS_IMETHOD GetOpacity(nsString& aOpacity)=0;
NS_IMETHOD SetOpacity(const nsString& aOpacity)=0;
};
#define NS_DECL_IDOMCSS2PROPERTIES \
NS_IMETHOD GetAzimuth(nsString& aAzimuth); \
NS_IMETHOD SetAzimuth(const nsString& aAzimuth); \
NS_IMETHOD GetBackground(nsString& aBackground); \
NS_IMETHOD SetBackground(const nsString& aBackground); \
NS_IMETHOD GetBackgroundAttachment(nsString& aBackgroundAttachment); \
NS_IMETHOD SetBackgroundAttachment(const nsString& aBackgroundAttachment); \
NS_IMETHOD GetBackgroundColor(nsString& aBackgroundColor); \
NS_IMETHOD SetBackgroundColor(const nsString& aBackgroundColor); \
NS_IMETHOD GetBackgroundImage(nsString& aBackgroundImage); \
NS_IMETHOD SetBackgroundImage(const nsString& aBackgroundImage); \
NS_IMETHOD GetBackgroundPosition(nsString& aBackgroundPosition); \
NS_IMETHOD SetBackgroundPosition(const nsString& aBackgroundPosition); \
NS_IMETHOD GetBackgroundRepeat(nsString& aBackgroundRepeat); \
NS_IMETHOD SetBackgroundRepeat(const nsString& aBackgroundRepeat); \
NS_IMETHOD GetBorder(nsString& aBorder); \
NS_IMETHOD SetBorder(const nsString& aBorder); \
NS_IMETHOD GetBorderCollapse(nsString& aBorderCollapse); \
NS_IMETHOD SetBorderCollapse(const nsString& aBorderCollapse); \
NS_IMETHOD GetBorderColor(nsString& aBorderColor); \
NS_IMETHOD SetBorderColor(const nsString& aBorderColor); \
NS_IMETHOD GetBorderSpacing(nsString& aBorderSpacing); \
NS_IMETHOD SetBorderSpacing(const nsString& aBorderSpacing); \
NS_IMETHOD GetBorderStyle(nsString& aBorderStyle); \
NS_IMETHOD SetBorderStyle(const nsString& aBorderStyle); \
NS_IMETHOD GetBorderTop(nsString& aBorderTop); \
NS_IMETHOD SetBorderTop(const nsString& aBorderTop); \
NS_IMETHOD GetBorderRight(nsString& aBorderRight); \
NS_IMETHOD SetBorderRight(const nsString& aBorderRight); \
NS_IMETHOD GetBorderBottom(nsString& aBorderBottom); \
NS_IMETHOD SetBorderBottom(const nsString& aBorderBottom); \
NS_IMETHOD GetBorderLeft(nsString& aBorderLeft); \
NS_IMETHOD SetBorderLeft(const nsString& aBorderLeft); \
NS_IMETHOD GetBorderTopColor(nsString& aBorderTopColor); \
NS_IMETHOD SetBorderTopColor(const nsString& aBorderTopColor); \
NS_IMETHOD GetBorderRightColor(nsString& aBorderRightColor); \
NS_IMETHOD SetBorderRightColor(const nsString& aBorderRightColor); \
NS_IMETHOD GetBorderBottomColor(nsString& aBorderBottomColor); \
NS_IMETHOD SetBorderBottomColor(const nsString& aBorderBottomColor); \
NS_IMETHOD GetBorderLeftColor(nsString& aBorderLeftColor); \
NS_IMETHOD SetBorderLeftColor(const nsString& aBorderLeftColor); \
NS_IMETHOD GetBorderTopStyle(nsString& aBorderTopStyle); \
NS_IMETHOD SetBorderTopStyle(const nsString& aBorderTopStyle); \
NS_IMETHOD GetBorderRightStyle(nsString& aBorderRightStyle); \
NS_IMETHOD SetBorderRightStyle(const nsString& aBorderRightStyle); \
NS_IMETHOD GetBorderBottomStyle(nsString& aBorderBottomStyle); \
NS_IMETHOD SetBorderBottomStyle(const nsString& aBorderBottomStyle); \
NS_IMETHOD GetBorderLeftStyle(nsString& aBorderLeftStyle); \
NS_IMETHOD SetBorderLeftStyle(const nsString& aBorderLeftStyle); \
NS_IMETHOD GetBorderTopWidth(nsString& aBorderTopWidth); \
NS_IMETHOD SetBorderTopWidth(const nsString& aBorderTopWidth); \
NS_IMETHOD GetBorderRightWidth(nsString& aBorderRightWidth); \
NS_IMETHOD SetBorderRightWidth(const nsString& aBorderRightWidth); \
NS_IMETHOD GetBorderBottomWidth(nsString& aBorderBottomWidth); \
NS_IMETHOD SetBorderBottomWidth(const nsString& aBorderBottomWidth); \
NS_IMETHOD GetBorderLeftWidth(nsString& aBorderLeftWidth); \
NS_IMETHOD SetBorderLeftWidth(const nsString& aBorderLeftWidth); \
NS_IMETHOD GetBorderWidth(nsString& aBorderWidth); \
NS_IMETHOD SetBorderWidth(const nsString& aBorderWidth); \
NS_IMETHOD GetBottom(nsString& aBottom); \
NS_IMETHOD SetBottom(const nsString& aBottom); \
NS_IMETHOD GetCaptionSide(nsString& aCaptionSide); \
NS_IMETHOD SetCaptionSide(const nsString& aCaptionSide); \
NS_IMETHOD GetClear(nsString& aClear); \
NS_IMETHOD SetClear(const nsString& aClear); \
NS_IMETHOD GetClip(nsString& aClip); \
NS_IMETHOD SetClip(const nsString& aClip); \
NS_IMETHOD GetColor(nsString& aColor); \
NS_IMETHOD SetColor(const nsString& aColor); \
NS_IMETHOD GetContent(nsString& aContent); \
NS_IMETHOD SetContent(const nsString& aContent); \
NS_IMETHOD GetCounterIncrement(nsString& aCounterIncrement); \
NS_IMETHOD SetCounterIncrement(const nsString& aCounterIncrement); \
NS_IMETHOD GetCounterReset(nsString& aCounterReset); \
NS_IMETHOD SetCounterReset(const nsString& aCounterReset); \
NS_IMETHOD GetCue(nsString& aCue); \
NS_IMETHOD SetCue(const nsString& aCue); \
NS_IMETHOD GetCueAfter(nsString& aCueAfter); \
NS_IMETHOD SetCueAfter(const nsString& aCueAfter); \
NS_IMETHOD GetCueBefore(nsString& aCueBefore); \
NS_IMETHOD SetCueBefore(const nsString& aCueBefore); \
NS_IMETHOD GetCursor(nsString& aCursor); \
NS_IMETHOD SetCursor(const nsString& aCursor); \
NS_IMETHOD GetDirection(nsString& aDirection); \
NS_IMETHOD SetDirection(const nsString& aDirection); \
NS_IMETHOD GetDisplay(nsString& aDisplay); \
NS_IMETHOD SetDisplay(const nsString& aDisplay); \
NS_IMETHOD GetElevation(nsString& aElevation); \
NS_IMETHOD SetElevation(const nsString& aElevation); \
NS_IMETHOD GetEmptyCells(nsString& aEmptyCells); \
NS_IMETHOD SetEmptyCells(const nsString& aEmptyCells); \
NS_IMETHOD GetCssFloat(nsString& aCssFloat); \
NS_IMETHOD SetCssFloat(const nsString& aCssFloat); \
NS_IMETHOD GetFont(nsString& aFont); \
NS_IMETHOD SetFont(const nsString& aFont); \
NS_IMETHOD GetFontFamily(nsString& aFontFamily); \
NS_IMETHOD SetFontFamily(const nsString& aFontFamily); \
NS_IMETHOD GetFontSize(nsString& aFontSize); \
NS_IMETHOD SetFontSize(const nsString& aFontSize); \
NS_IMETHOD GetFontSizeAdjust(nsString& aFontSizeAdjust); \
NS_IMETHOD SetFontSizeAdjust(const nsString& aFontSizeAdjust); \
NS_IMETHOD GetFontStretch(nsString& aFontStretch); \
NS_IMETHOD SetFontStretch(const nsString& aFontStretch); \
NS_IMETHOD GetFontStyle(nsString& aFontStyle); \
NS_IMETHOD SetFontStyle(const nsString& aFontStyle); \
NS_IMETHOD GetFontVariant(nsString& aFontVariant); \
NS_IMETHOD SetFontVariant(const nsString& aFontVariant); \
NS_IMETHOD GetFontWeight(nsString& aFontWeight); \
NS_IMETHOD SetFontWeight(const nsString& aFontWeight); \
NS_IMETHOD GetHeight(nsString& aHeight); \
NS_IMETHOD SetHeight(const nsString& aHeight); \
NS_IMETHOD GetLeft(nsString& aLeft); \
NS_IMETHOD SetLeft(const nsString& aLeft); \
NS_IMETHOD GetLetterSpacing(nsString& aLetterSpacing); \
NS_IMETHOD SetLetterSpacing(const nsString& aLetterSpacing); \
NS_IMETHOD GetLineHeight(nsString& aLineHeight); \
NS_IMETHOD SetLineHeight(const nsString& aLineHeight); \
NS_IMETHOD GetListStyle(nsString& aListStyle); \
NS_IMETHOD SetListStyle(const nsString& aListStyle); \
NS_IMETHOD GetListStyleImage(nsString& aListStyleImage); \
NS_IMETHOD SetListStyleImage(const nsString& aListStyleImage); \
NS_IMETHOD GetListStylePosition(nsString& aListStylePosition); \
NS_IMETHOD SetListStylePosition(const nsString& aListStylePosition); \
NS_IMETHOD GetListStyleType(nsString& aListStyleType); \
NS_IMETHOD SetListStyleType(const nsString& aListStyleType); \
NS_IMETHOD GetMargin(nsString& aMargin); \
NS_IMETHOD SetMargin(const nsString& aMargin); \
NS_IMETHOD GetMarginTop(nsString& aMarginTop); \
NS_IMETHOD SetMarginTop(const nsString& aMarginTop); \
NS_IMETHOD GetMarginRight(nsString& aMarginRight); \
NS_IMETHOD SetMarginRight(const nsString& aMarginRight); \
NS_IMETHOD GetMarginBottom(nsString& aMarginBottom); \
NS_IMETHOD SetMarginBottom(const nsString& aMarginBottom); \
NS_IMETHOD GetMarginLeft(nsString& aMarginLeft); \
NS_IMETHOD SetMarginLeft(const nsString& aMarginLeft); \
NS_IMETHOD GetMarkerOffset(nsString& aMarkerOffset); \
NS_IMETHOD SetMarkerOffset(const nsString& aMarkerOffset); \
NS_IMETHOD GetMarks(nsString& aMarks); \
NS_IMETHOD SetMarks(const nsString& aMarks); \
NS_IMETHOD GetMaxHeight(nsString& aMaxHeight); \
NS_IMETHOD SetMaxHeight(const nsString& aMaxHeight); \
NS_IMETHOD GetMaxWidth(nsString& aMaxWidth); \
NS_IMETHOD SetMaxWidth(const nsString& aMaxWidth); \
NS_IMETHOD GetMinHeight(nsString& aMinHeight); \
NS_IMETHOD SetMinHeight(const nsString& aMinHeight); \
NS_IMETHOD GetMinWidth(nsString& aMinWidth); \
NS_IMETHOD SetMinWidth(const nsString& aMinWidth); \
NS_IMETHOD GetOrphans(nsString& aOrphans); \
NS_IMETHOD SetOrphans(const nsString& aOrphans); \
NS_IMETHOD GetOutline(nsString& aOutline); \
NS_IMETHOD SetOutline(const nsString& aOutline); \
NS_IMETHOD GetOutlineColor(nsString& aOutlineColor); \
NS_IMETHOD SetOutlineColor(const nsString& aOutlineColor); \
NS_IMETHOD GetOutlineStyle(nsString& aOutlineStyle); \
NS_IMETHOD SetOutlineStyle(const nsString& aOutlineStyle); \
NS_IMETHOD GetOutlineWidth(nsString& aOutlineWidth); \
NS_IMETHOD SetOutlineWidth(const nsString& aOutlineWidth); \
NS_IMETHOD GetOverflow(nsString& aOverflow); \
NS_IMETHOD SetOverflow(const nsString& aOverflow); \
NS_IMETHOD GetPadding(nsString& aPadding); \
NS_IMETHOD SetPadding(const nsString& aPadding); \
NS_IMETHOD GetPaddingTop(nsString& aPaddingTop); \
NS_IMETHOD SetPaddingTop(const nsString& aPaddingTop); \
NS_IMETHOD GetPaddingRight(nsString& aPaddingRight); \
NS_IMETHOD SetPaddingRight(const nsString& aPaddingRight); \
NS_IMETHOD GetPaddingBottom(nsString& aPaddingBottom); \
NS_IMETHOD SetPaddingBottom(const nsString& aPaddingBottom); \
NS_IMETHOD GetPaddingLeft(nsString& aPaddingLeft); \
NS_IMETHOD SetPaddingLeft(const nsString& aPaddingLeft); \
NS_IMETHOD GetPage(nsString& aPage); \
NS_IMETHOD SetPage(const nsString& aPage); \
NS_IMETHOD GetPageBreakAfter(nsString& aPageBreakAfter); \
NS_IMETHOD SetPageBreakAfter(const nsString& aPageBreakAfter); \
NS_IMETHOD GetPageBreakBefore(nsString& aPageBreakBefore); \
NS_IMETHOD SetPageBreakBefore(const nsString& aPageBreakBefore); \
NS_IMETHOD GetPageBreakInside(nsString& aPageBreakInside); \
NS_IMETHOD SetPageBreakInside(const nsString& aPageBreakInside); \
NS_IMETHOD GetPause(nsString& aPause); \
NS_IMETHOD SetPause(const nsString& aPause); \
NS_IMETHOD GetPauseAfter(nsString& aPauseAfter); \
NS_IMETHOD SetPauseAfter(const nsString& aPauseAfter); \
NS_IMETHOD GetPauseBefore(nsString& aPauseBefore); \
NS_IMETHOD SetPauseBefore(const nsString& aPauseBefore); \
NS_IMETHOD GetPitch(nsString& aPitch); \
NS_IMETHOD SetPitch(const nsString& aPitch); \
NS_IMETHOD GetPitchRange(nsString& aPitchRange); \
NS_IMETHOD SetPitchRange(const nsString& aPitchRange); \
NS_IMETHOD GetPlayDuring(nsString& aPlayDuring); \
NS_IMETHOD SetPlayDuring(const nsString& aPlayDuring); \
NS_IMETHOD GetPosition(nsString& aPosition); \
NS_IMETHOD SetPosition(const nsString& aPosition); \
NS_IMETHOD GetQuotes(nsString& aQuotes); \
NS_IMETHOD SetQuotes(const nsString& aQuotes); \
NS_IMETHOD GetRichness(nsString& aRichness); \
NS_IMETHOD SetRichness(const nsString& aRichness); \
NS_IMETHOD GetRight(nsString& aRight); \
NS_IMETHOD SetRight(const nsString& aRight); \
NS_IMETHOD GetSize(nsString& aSize); \
NS_IMETHOD SetSize(const nsString& aSize); \
NS_IMETHOD GetSpeak(nsString& aSpeak); \
NS_IMETHOD SetSpeak(const nsString& aSpeak); \
NS_IMETHOD GetSpeakHeader(nsString& aSpeakHeader); \
NS_IMETHOD SetSpeakHeader(const nsString& aSpeakHeader); \
NS_IMETHOD GetSpeakNumeral(nsString& aSpeakNumeral); \
NS_IMETHOD SetSpeakNumeral(const nsString& aSpeakNumeral); \
NS_IMETHOD GetSpeakPunctuation(nsString& aSpeakPunctuation); \
NS_IMETHOD SetSpeakPunctuation(const nsString& aSpeakPunctuation); \
NS_IMETHOD GetSpeechRate(nsString& aSpeechRate); \
NS_IMETHOD SetSpeechRate(const nsString& aSpeechRate); \
NS_IMETHOD GetStress(nsString& aStress); \
NS_IMETHOD SetStress(const nsString& aStress); \
NS_IMETHOD GetTableLayout(nsString& aTableLayout); \
NS_IMETHOD SetTableLayout(const nsString& aTableLayout); \
NS_IMETHOD GetTextAlign(nsString& aTextAlign); \
NS_IMETHOD SetTextAlign(const nsString& aTextAlign); \
NS_IMETHOD GetTextDecoration(nsString& aTextDecoration); \
NS_IMETHOD SetTextDecoration(const nsString& aTextDecoration); \
NS_IMETHOD GetTextIndent(nsString& aTextIndent); \
NS_IMETHOD SetTextIndent(const nsString& aTextIndent); \
NS_IMETHOD GetTextShadow(nsString& aTextShadow); \
NS_IMETHOD SetTextShadow(const nsString& aTextShadow); \
NS_IMETHOD GetTextTransform(nsString& aTextTransform); \
NS_IMETHOD SetTextTransform(const nsString& aTextTransform); \
NS_IMETHOD GetTop(nsString& aTop); \
NS_IMETHOD SetTop(const nsString& aTop); \
NS_IMETHOD GetUnicodeBidi(nsString& aUnicodeBidi); \
NS_IMETHOD SetUnicodeBidi(const nsString& aUnicodeBidi); \
NS_IMETHOD GetVerticalAlign(nsString& aVerticalAlign); \
NS_IMETHOD SetVerticalAlign(const nsString& aVerticalAlign); \
NS_IMETHOD GetVisibility(nsString& aVisibility); \
NS_IMETHOD SetVisibility(const nsString& aVisibility); \
NS_IMETHOD GetVoiceFamily(nsString& aVoiceFamily); \
NS_IMETHOD SetVoiceFamily(const nsString& aVoiceFamily); \
NS_IMETHOD GetVolume(nsString& aVolume); \
NS_IMETHOD SetVolume(const nsString& aVolume); \
NS_IMETHOD GetWhiteSpace(nsString& aWhiteSpace); \
NS_IMETHOD SetWhiteSpace(const nsString& aWhiteSpace); \
NS_IMETHOD GetWidows(nsString& aWidows); \
NS_IMETHOD SetWidows(const nsString& aWidows); \
NS_IMETHOD GetWidth(nsString& aWidth); \
NS_IMETHOD SetWidth(const nsString& aWidth); \
NS_IMETHOD GetWordSpacing(nsString& aWordSpacing); \
NS_IMETHOD SetWordSpacing(const nsString& aWordSpacing); \
NS_IMETHOD GetZIndex(nsString& aZIndex); \
NS_IMETHOD SetZIndex(const nsString& aZIndex); \
NS_IMETHOD GetOpacity(nsString& aOpacity); \
NS_IMETHOD SetOpacity(const nsString& aOpacity); \
#define NS_FORWARD_IDOMCSS2PROPERTIES(_to) \
NS_IMETHOD GetAzimuth(nsString& aAzimuth) { return _to##GetAzimuth(aAzimuth); } \
NS_IMETHOD SetAzimuth(const nsString& aAzimuth) { return _to##SetAzimuth(aAzimuth); } \
NS_IMETHOD GetBackground(nsString& aBackground) { return _to##GetBackground(aBackground); } \
NS_IMETHOD SetBackground(const nsString& aBackground) { return _to##SetBackground(aBackground); } \
NS_IMETHOD GetBackgroundAttachment(nsString& aBackgroundAttachment) { return _to##GetBackgroundAttachment(aBackgroundAttachment); } \
NS_IMETHOD SetBackgroundAttachment(const nsString& aBackgroundAttachment) { return _to##SetBackgroundAttachment(aBackgroundAttachment); } \
NS_IMETHOD GetBackgroundColor(nsString& aBackgroundColor) { return _to##GetBackgroundColor(aBackgroundColor); } \
NS_IMETHOD SetBackgroundColor(const nsString& aBackgroundColor) { return _to##SetBackgroundColor(aBackgroundColor); } \
NS_IMETHOD GetBackgroundImage(nsString& aBackgroundImage) { return _to##GetBackgroundImage(aBackgroundImage); } \
NS_IMETHOD SetBackgroundImage(const nsString& aBackgroundImage) { return _to##SetBackgroundImage(aBackgroundImage); } \
NS_IMETHOD GetBackgroundPosition(nsString& aBackgroundPosition) { return _to##GetBackgroundPosition(aBackgroundPosition); } \
NS_IMETHOD SetBackgroundPosition(const nsString& aBackgroundPosition) { return _to##SetBackgroundPosition(aBackgroundPosition); } \
NS_IMETHOD GetBackgroundRepeat(nsString& aBackgroundRepeat) { return _to##GetBackgroundRepeat(aBackgroundRepeat); } \
NS_IMETHOD SetBackgroundRepeat(const nsString& aBackgroundRepeat) { return _to##SetBackgroundRepeat(aBackgroundRepeat); } \
NS_IMETHOD GetBorder(nsString& aBorder) { return _to##GetBorder(aBorder); } \
NS_IMETHOD SetBorder(const nsString& aBorder) { return _to##SetBorder(aBorder); } \
NS_IMETHOD GetBorderCollapse(nsString& aBorderCollapse) { return _to##GetBorderCollapse(aBorderCollapse); } \
NS_IMETHOD SetBorderCollapse(const nsString& aBorderCollapse) { return _to##SetBorderCollapse(aBorderCollapse); } \
NS_IMETHOD GetBorderColor(nsString& aBorderColor) { return _to##GetBorderColor(aBorderColor); } \
NS_IMETHOD SetBorderColor(const nsString& aBorderColor) { return _to##SetBorderColor(aBorderColor); } \
NS_IMETHOD GetBorderSpacing(nsString& aBorderSpacing) { return _to##GetBorderSpacing(aBorderSpacing); } \
NS_IMETHOD SetBorderSpacing(const nsString& aBorderSpacing) { return _to##SetBorderSpacing(aBorderSpacing); } \
NS_IMETHOD GetBorderStyle(nsString& aBorderStyle) { return _to##GetBorderStyle(aBorderStyle); } \
NS_IMETHOD SetBorderStyle(const nsString& aBorderStyle) { return _to##SetBorderStyle(aBorderStyle); } \
NS_IMETHOD GetBorderTop(nsString& aBorderTop) { return _to##GetBorderTop(aBorderTop); } \
NS_IMETHOD SetBorderTop(const nsString& aBorderTop) { return _to##SetBorderTop(aBorderTop); } \
NS_IMETHOD GetBorderRight(nsString& aBorderRight) { return _to##GetBorderRight(aBorderRight); } \
NS_IMETHOD SetBorderRight(const nsString& aBorderRight) { return _to##SetBorderRight(aBorderRight); } \
NS_IMETHOD GetBorderBottom(nsString& aBorderBottom) { return _to##GetBorderBottom(aBorderBottom); } \
NS_IMETHOD SetBorderBottom(const nsString& aBorderBottom) { return _to##SetBorderBottom(aBorderBottom); } \
NS_IMETHOD GetBorderLeft(nsString& aBorderLeft) { return _to##GetBorderLeft(aBorderLeft); } \
NS_IMETHOD SetBorderLeft(const nsString& aBorderLeft) { return _to##SetBorderLeft(aBorderLeft); } \
NS_IMETHOD GetBorderTopColor(nsString& aBorderTopColor) { return _to##GetBorderTopColor(aBorderTopColor); } \
NS_IMETHOD SetBorderTopColor(const nsString& aBorderTopColor) { return _to##SetBorderTopColor(aBorderTopColor); } \
NS_IMETHOD GetBorderRightColor(nsString& aBorderRightColor) { return _to##GetBorderRightColor(aBorderRightColor); } \
NS_IMETHOD SetBorderRightColor(const nsString& aBorderRightColor) { return _to##SetBorderRightColor(aBorderRightColor); } \
NS_IMETHOD GetBorderBottomColor(nsString& aBorderBottomColor) { return _to##GetBorderBottomColor(aBorderBottomColor); } \
NS_IMETHOD SetBorderBottomColor(const nsString& aBorderBottomColor) { return _to##SetBorderBottomColor(aBorderBottomColor); } \
NS_IMETHOD GetBorderLeftColor(nsString& aBorderLeftColor) { return _to##GetBorderLeftColor(aBorderLeftColor); } \
NS_IMETHOD SetBorderLeftColor(const nsString& aBorderLeftColor) { return _to##SetBorderLeftColor(aBorderLeftColor); } \
NS_IMETHOD GetBorderTopStyle(nsString& aBorderTopStyle) { return _to##GetBorderTopStyle(aBorderTopStyle); } \
NS_IMETHOD SetBorderTopStyle(const nsString& aBorderTopStyle) { return _to##SetBorderTopStyle(aBorderTopStyle); } \
NS_IMETHOD GetBorderRightStyle(nsString& aBorderRightStyle) { return _to##GetBorderRightStyle(aBorderRightStyle); } \
NS_IMETHOD SetBorderRightStyle(const nsString& aBorderRightStyle) { return _to##SetBorderRightStyle(aBorderRightStyle); } \
NS_IMETHOD GetBorderBottomStyle(nsString& aBorderBottomStyle) { return _to##GetBorderBottomStyle(aBorderBottomStyle); } \
NS_IMETHOD SetBorderBottomStyle(const nsString& aBorderBottomStyle) { return _to##SetBorderBottomStyle(aBorderBottomStyle); } \
NS_IMETHOD GetBorderLeftStyle(nsString& aBorderLeftStyle) { return _to##GetBorderLeftStyle(aBorderLeftStyle); } \
NS_IMETHOD SetBorderLeftStyle(const nsString& aBorderLeftStyle) { return _to##SetBorderLeftStyle(aBorderLeftStyle); } \
NS_IMETHOD GetBorderTopWidth(nsString& aBorderTopWidth) { return _to##GetBorderTopWidth(aBorderTopWidth); } \
NS_IMETHOD SetBorderTopWidth(const nsString& aBorderTopWidth) { return _to##SetBorderTopWidth(aBorderTopWidth); } \
NS_IMETHOD GetBorderRightWidth(nsString& aBorderRightWidth) { return _to##GetBorderRightWidth(aBorderRightWidth); } \
NS_IMETHOD SetBorderRightWidth(const nsString& aBorderRightWidth) { return _to##SetBorderRightWidth(aBorderRightWidth); } \
NS_IMETHOD GetBorderBottomWidth(nsString& aBorderBottomWidth) { return _to##GetBorderBottomWidth(aBorderBottomWidth); } \
NS_IMETHOD SetBorderBottomWidth(const nsString& aBorderBottomWidth) { return _to##SetBorderBottomWidth(aBorderBottomWidth); } \
NS_IMETHOD GetBorderLeftWidth(nsString& aBorderLeftWidth) { return _to##GetBorderLeftWidth(aBorderLeftWidth); } \
NS_IMETHOD SetBorderLeftWidth(const nsString& aBorderLeftWidth) { return _to##SetBorderLeftWidth(aBorderLeftWidth); } \
NS_IMETHOD GetBorderWidth(nsString& aBorderWidth) { return _to##GetBorderWidth(aBorderWidth); } \
NS_IMETHOD SetBorderWidth(const nsString& aBorderWidth) { return _to##SetBorderWidth(aBorderWidth); } \
NS_IMETHOD GetBottom(nsString& aBottom) { return _to##GetBottom(aBottom); } \
NS_IMETHOD SetBottom(const nsString& aBottom) { return _to##SetBottom(aBottom); } \
NS_IMETHOD GetCaptionSide(nsString& aCaptionSide) { return _to##GetCaptionSide(aCaptionSide); } \
NS_IMETHOD SetCaptionSide(const nsString& aCaptionSide) { return _to##SetCaptionSide(aCaptionSide); } \
NS_IMETHOD GetClear(nsString& aClear) { return _to##GetClear(aClear); } \
NS_IMETHOD SetClear(const nsString& aClear) { return _to##SetClear(aClear); } \
NS_IMETHOD GetClip(nsString& aClip) { return _to##GetClip(aClip); } \
NS_IMETHOD SetClip(const nsString& aClip) { return _to##SetClip(aClip); } \
NS_IMETHOD GetColor(nsString& aColor) { return _to##GetColor(aColor); } \
NS_IMETHOD SetColor(const nsString& aColor) { return _to##SetColor(aColor); } \
NS_IMETHOD GetContent(nsString& aContent) { return _to##GetContent(aContent); } \
NS_IMETHOD SetContent(const nsString& aContent) { return _to##SetContent(aContent); } \
NS_IMETHOD GetCounterIncrement(nsString& aCounterIncrement) { return _to##GetCounterIncrement(aCounterIncrement); } \
NS_IMETHOD SetCounterIncrement(const nsString& aCounterIncrement) { return _to##SetCounterIncrement(aCounterIncrement); } \
NS_IMETHOD GetCounterReset(nsString& aCounterReset) { return _to##GetCounterReset(aCounterReset); } \
NS_IMETHOD SetCounterReset(const nsString& aCounterReset) { return _to##SetCounterReset(aCounterReset); } \
NS_IMETHOD GetCue(nsString& aCue) { return _to##GetCue(aCue); } \
NS_IMETHOD SetCue(const nsString& aCue) { return _to##SetCue(aCue); } \
NS_IMETHOD GetCueAfter(nsString& aCueAfter) { return _to##GetCueAfter(aCueAfter); } \
NS_IMETHOD SetCueAfter(const nsString& aCueAfter) { return _to##SetCueAfter(aCueAfter); } \
NS_IMETHOD GetCueBefore(nsString& aCueBefore) { return _to##GetCueBefore(aCueBefore); } \
NS_IMETHOD SetCueBefore(const nsString& aCueBefore) { return _to##SetCueBefore(aCueBefore); } \
NS_IMETHOD GetCursor(nsString& aCursor) { return _to##GetCursor(aCursor); } \
NS_IMETHOD SetCursor(const nsString& aCursor) { return _to##SetCursor(aCursor); } \
NS_IMETHOD GetDirection(nsString& aDirection) { return _to##GetDirection(aDirection); } \
NS_IMETHOD SetDirection(const nsString& aDirection) { return _to##SetDirection(aDirection); } \
NS_IMETHOD GetDisplay(nsString& aDisplay) { return _to##GetDisplay(aDisplay); } \
NS_IMETHOD SetDisplay(const nsString& aDisplay) { return _to##SetDisplay(aDisplay); } \
NS_IMETHOD GetElevation(nsString& aElevation) { return _to##GetElevation(aElevation); } \
NS_IMETHOD SetElevation(const nsString& aElevation) { return _to##SetElevation(aElevation); } \
NS_IMETHOD GetEmptyCells(nsString& aEmptyCells) { return _to##GetEmptyCells(aEmptyCells); } \
NS_IMETHOD SetEmptyCells(const nsString& aEmptyCells) { return _to##SetEmptyCells(aEmptyCells); } \
NS_IMETHOD GetCssFloat(nsString& aCssFloat) { return _to##GetCssFloat(aCssFloat); } \
NS_IMETHOD SetCssFloat(const nsString& aCssFloat) { return _to##SetCssFloat(aCssFloat); } \
NS_IMETHOD GetFont(nsString& aFont) { return _to##GetFont(aFont); } \
NS_IMETHOD SetFont(const nsString& aFont) { return _to##SetFont(aFont); } \
NS_IMETHOD GetFontFamily(nsString& aFontFamily) { return _to##GetFontFamily(aFontFamily); } \
NS_IMETHOD SetFontFamily(const nsString& aFontFamily) { return _to##SetFontFamily(aFontFamily); } \
NS_IMETHOD GetFontSize(nsString& aFontSize) { return _to##GetFontSize(aFontSize); } \
NS_IMETHOD SetFontSize(const nsString& aFontSize) { return _to##SetFontSize(aFontSize); } \
NS_IMETHOD GetFontSizeAdjust(nsString& aFontSizeAdjust) { return _to##GetFontSizeAdjust(aFontSizeAdjust); } \
NS_IMETHOD SetFontSizeAdjust(const nsString& aFontSizeAdjust) { return _to##SetFontSizeAdjust(aFontSizeAdjust); } \
NS_IMETHOD GetFontStretch(nsString& aFontStretch) { return _to##GetFontStretch(aFontStretch); } \
NS_IMETHOD SetFontStretch(const nsString& aFontStretch) { return _to##SetFontStretch(aFontStretch); } \
NS_IMETHOD GetFontStyle(nsString& aFontStyle) { return _to##GetFontStyle(aFontStyle); } \
NS_IMETHOD SetFontStyle(const nsString& aFontStyle) { return _to##SetFontStyle(aFontStyle); } \
NS_IMETHOD GetFontVariant(nsString& aFontVariant) { return _to##GetFontVariant(aFontVariant); } \
NS_IMETHOD SetFontVariant(const nsString& aFontVariant) { return _to##SetFontVariant(aFontVariant); } \
NS_IMETHOD GetFontWeight(nsString& aFontWeight) { return _to##GetFontWeight(aFontWeight); } \
NS_IMETHOD SetFontWeight(const nsString& aFontWeight) { return _to##SetFontWeight(aFontWeight); } \
NS_IMETHOD GetHeight(nsString& aHeight) { return _to##GetHeight(aHeight); } \
NS_IMETHOD SetHeight(const nsString& aHeight) { return _to##SetHeight(aHeight); } \
NS_IMETHOD GetLeft(nsString& aLeft) { return _to##GetLeft(aLeft); } \
NS_IMETHOD SetLeft(const nsString& aLeft) { return _to##SetLeft(aLeft); } \
NS_IMETHOD GetLetterSpacing(nsString& aLetterSpacing) { return _to##GetLetterSpacing(aLetterSpacing); } \
NS_IMETHOD SetLetterSpacing(const nsString& aLetterSpacing) { return _to##SetLetterSpacing(aLetterSpacing); } \
NS_IMETHOD GetLineHeight(nsString& aLineHeight) { return _to##GetLineHeight(aLineHeight); } \
NS_IMETHOD SetLineHeight(const nsString& aLineHeight) { return _to##SetLineHeight(aLineHeight); } \
NS_IMETHOD GetListStyle(nsString& aListStyle) { return _to##GetListStyle(aListStyle); } \
NS_IMETHOD SetListStyle(const nsString& aListStyle) { return _to##SetListStyle(aListStyle); } \
NS_IMETHOD GetListStyleImage(nsString& aListStyleImage) { return _to##GetListStyleImage(aListStyleImage); } \
NS_IMETHOD SetListStyleImage(const nsString& aListStyleImage) { return _to##SetListStyleImage(aListStyleImage); } \
NS_IMETHOD GetListStylePosition(nsString& aListStylePosition) { return _to##GetListStylePosition(aListStylePosition); } \
NS_IMETHOD SetListStylePosition(const nsString& aListStylePosition) { return _to##SetListStylePosition(aListStylePosition); } \
NS_IMETHOD GetListStyleType(nsString& aListStyleType) { return _to##GetListStyleType(aListStyleType); } \
NS_IMETHOD SetListStyleType(const nsString& aListStyleType) { return _to##SetListStyleType(aListStyleType); } \
NS_IMETHOD GetMargin(nsString& aMargin) { return _to##GetMargin(aMargin); } \
NS_IMETHOD SetMargin(const nsString& aMargin) { return _to##SetMargin(aMargin); } \
NS_IMETHOD GetMarginTop(nsString& aMarginTop) { return _to##GetMarginTop(aMarginTop); } \
NS_IMETHOD SetMarginTop(const nsString& aMarginTop) { return _to##SetMarginTop(aMarginTop); } \
NS_IMETHOD GetMarginRight(nsString& aMarginRight) { return _to##GetMarginRight(aMarginRight); } \
NS_IMETHOD SetMarginRight(const nsString& aMarginRight) { return _to##SetMarginRight(aMarginRight); } \
NS_IMETHOD GetMarginBottom(nsString& aMarginBottom) { return _to##GetMarginBottom(aMarginBottom); } \
NS_IMETHOD SetMarginBottom(const nsString& aMarginBottom) { return _to##SetMarginBottom(aMarginBottom); } \
NS_IMETHOD GetMarginLeft(nsString& aMarginLeft) { return _to##GetMarginLeft(aMarginLeft); } \
NS_IMETHOD SetMarginLeft(const nsString& aMarginLeft) { return _to##SetMarginLeft(aMarginLeft); } \
NS_IMETHOD GetMarkerOffset(nsString& aMarkerOffset) { return _to##GetMarkerOffset(aMarkerOffset); } \
NS_IMETHOD SetMarkerOffset(const nsString& aMarkerOffset) { return _to##SetMarkerOffset(aMarkerOffset); } \
NS_IMETHOD GetMarks(nsString& aMarks) { return _to##GetMarks(aMarks); } \
NS_IMETHOD SetMarks(const nsString& aMarks) { return _to##SetMarks(aMarks); } \
NS_IMETHOD GetMaxHeight(nsString& aMaxHeight) { return _to##GetMaxHeight(aMaxHeight); } \
NS_IMETHOD SetMaxHeight(const nsString& aMaxHeight) { return _to##SetMaxHeight(aMaxHeight); } \
NS_IMETHOD GetMaxWidth(nsString& aMaxWidth) { return _to##GetMaxWidth(aMaxWidth); } \
NS_IMETHOD SetMaxWidth(const nsString& aMaxWidth) { return _to##SetMaxWidth(aMaxWidth); } \
NS_IMETHOD GetMinHeight(nsString& aMinHeight) { return _to##GetMinHeight(aMinHeight); } \
NS_IMETHOD SetMinHeight(const nsString& aMinHeight) { return _to##SetMinHeight(aMinHeight); } \
NS_IMETHOD GetMinWidth(nsString& aMinWidth) { return _to##GetMinWidth(aMinWidth); } \
NS_IMETHOD SetMinWidth(const nsString& aMinWidth) { return _to##SetMinWidth(aMinWidth); } \
NS_IMETHOD GetOrphans(nsString& aOrphans) { return _to##GetOrphans(aOrphans); } \
NS_IMETHOD SetOrphans(const nsString& aOrphans) { return _to##SetOrphans(aOrphans); } \
NS_IMETHOD GetOutline(nsString& aOutline) { return _to##GetOutline(aOutline); } \
NS_IMETHOD SetOutline(const nsString& aOutline) { return _to##SetOutline(aOutline); } \
NS_IMETHOD GetOutlineColor(nsString& aOutlineColor) { return _to##GetOutlineColor(aOutlineColor); } \
NS_IMETHOD SetOutlineColor(const nsString& aOutlineColor) { return _to##SetOutlineColor(aOutlineColor); } \
NS_IMETHOD GetOutlineStyle(nsString& aOutlineStyle) { return _to##GetOutlineStyle(aOutlineStyle); } \
NS_IMETHOD SetOutlineStyle(const nsString& aOutlineStyle) { return _to##SetOutlineStyle(aOutlineStyle); } \
NS_IMETHOD GetOutlineWidth(nsString& aOutlineWidth) { return _to##GetOutlineWidth(aOutlineWidth); } \
NS_IMETHOD SetOutlineWidth(const nsString& aOutlineWidth) { return _to##SetOutlineWidth(aOutlineWidth); } \
NS_IMETHOD GetOverflow(nsString& aOverflow) { return _to##GetOverflow(aOverflow); } \
NS_IMETHOD SetOverflow(const nsString& aOverflow) { return _to##SetOverflow(aOverflow); } \
NS_IMETHOD GetPadding(nsString& aPadding) { return _to##GetPadding(aPadding); } \
NS_IMETHOD SetPadding(const nsString& aPadding) { return _to##SetPadding(aPadding); } \
NS_IMETHOD GetPaddingTop(nsString& aPaddingTop) { return _to##GetPaddingTop(aPaddingTop); } \
NS_IMETHOD SetPaddingTop(const nsString& aPaddingTop) { return _to##SetPaddingTop(aPaddingTop); } \
NS_IMETHOD GetPaddingRight(nsString& aPaddingRight) { return _to##GetPaddingRight(aPaddingRight); } \
NS_IMETHOD SetPaddingRight(const nsString& aPaddingRight) { return _to##SetPaddingRight(aPaddingRight); } \
NS_IMETHOD GetPaddingBottom(nsString& aPaddingBottom) { return _to##GetPaddingBottom(aPaddingBottom); } \
NS_IMETHOD SetPaddingBottom(const nsString& aPaddingBottom) { return _to##SetPaddingBottom(aPaddingBottom); } \
NS_IMETHOD GetPaddingLeft(nsString& aPaddingLeft) { return _to##GetPaddingLeft(aPaddingLeft); } \
NS_IMETHOD SetPaddingLeft(const nsString& aPaddingLeft) { return _to##SetPaddingLeft(aPaddingLeft); } \
NS_IMETHOD GetPage(nsString& aPage) { return _to##GetPage(aPage); } \
NS_IMETHOD SetPage(const nsString& aPage) { return _to##SetPage(aPage); } \
NS_IMETHOD GetPageBreakAfter(nsString& aPageBreakAfter) { return _to##GetPageBreakAfter(aPageBreakAfter); } \
NS_IMETHOD SetPageBreakAfter(const nsString& aPageBreakAfter) { return _to##SetPageBreakAfter(aPageBreakAfter); } \
NS_IMETHOD GetPageBreakBefore(nsString& aPageBreakBefore) { return _to##GetPageBreakBefore(aPageBreakBefore); } \
NS_IMETHOD SetPageBreakBefore(const nsString& aPageBreakBefore) { return _to##SetPageBreakBefore(aPageBreakBefore); } \
NS_IMETHOD GetPageBreakInside(nsString& aPageBreakInside) { return _to##GetPageBreakInside(aPageBreakInside); } \
NS_IMETHOD SetPageBreakInside(const nsString& aPageBreakInside) { return _to##SetPageBreakInside(aPageBreakInside); } \
NS_IMETHOD GetPause(nsString& aPause) { return _to##GetPause(aPause); } \
NS_IMETHOD SetPause(const nsString& aPause) { return _to##SetPause(aPause); } \
NS_IMETHOD GetPauseAfter(nsString& aPauseAfter) { return _to##GetPauseAfter(aPauseAfter); } \
NS_IMETHOD SetPauseAfter(const nsString& aPauseAfter) { return _to##SetPauseAfter(aPauseAfter); } \
NS_IMETHOD GetPauseBefore(nsString& aPauseBefore) { return _to##GetPauseBefore(aPauseBefore); } \
NS_IMETHOD SetPauseBefore(const nsString& aPauseBefore) { return _to##SetPauseBefore(aPauseBefore); } \
NS_IMETHOD GetPitch(nsString& aPitch) { return _to##GetPitch(aPitch); } \
NS_IMETHOD SetPitch(const nsString& aPitch) { return _to##SetPitch(aPitch); } \
NS_IMETHOD GetPitchRange(nsString& aPitchRange) { return _to##GetPitchRange(aPitchRange); } \
NS_IMETHOD SetPitchRange(const nsString& aPitchRange) { return _to##SetPitchRange(aPitchRange); } \
NS_IMETHOD GetPlayDuring(nsString& aPlayDuring) { return _to##GetPlayDuring(aPlayDuring); } \
NS_IMETHOD SetPlayDuring(const nsString& aPlayDuring) { return _to##SetPlayDuring(aPlayDuring); } \
NS_IMETHOD GetPosition(nsString& aPosition) { return _to##GetPosition(aPosition); } \
NS_IMETHOD SetPosition(const nsString& aPosition) { return _to##SetPosition(aPosition); } \
NS_IMETHOD GetQuotes(nsString& aQuotes) { return _to##GetQuotes(aQuotes); } \
NS_IMETHOD SetQuotes(const nsString& aQuotes) { return _to##SetQuotes(aQuotes); } \
NS_IMETHOD GetRichness(nsString& aRichness) { return _to##GetRichness(aRichness); } \
NS_IMETHOD SetRichness(const nsString& aRichness) { return _to##SetRichness(aRichness); } \
NS_IMETHOD GetRight(nsString& aRight) { return _to##GetRight(aRight); } \
NS_IMETHOD SetRight(const nsString& aRight) { return _to##SetRight(aRight); } \
NS_IMETHOD GetSize(nsString& aSize) { return _to##GetSize(aSize); } \
NS_IMETHOD SetSize(const nsString& aSize) { return _to##SetSize(aSize); } \
NS_IMETHOD GetSpeak(nsString& aSpeak) { return _to##GetSpeak(aSpeak); } \
NS_IMETHOD SetSpeak(const nsString& aSpeak) { return _to##SetSpeak(aSpeak); } \
NS_IMETHOD GetSpeakHeader(nsString& aSpeakHeader) { return _to##GetSpeakHeader(aSpeakHeader); } \
NS_IMETHOD SetSpeakHeader(const nsString& aSpeakHeader) { return _to##SetSpeakHeader(aSpeakHeader); } \
NS_IMETHOD GetSpeakNumeral(nsString& aSpeakNumeral) { return _to##GetSpeakNumeral(aSpeakNumeral); } \
NS_IMETHOD SetSpeakNumeral(const nsString& aSpeakNumeral) { return _to##SetSpeakNumeral(aSpeakNumeral); } \
NS_IMETHOD GetSpeakPunctuation(nsString& aSpeakPunctuation) { return _to##GetSpeakPunctuation(aSpeakPunctuation); } \
NS_IMETHOD SetSpeakPunctuation(const nsString& aSpeakPunctuation) { return _to##SetSpeakPunctuation(aSpeakPunctuation); } \
NS_IMETHOD GetSpeechRate(nsString& aSpeechRate) { return _to##GetSpeechRate(aSpeechRate); } \
NS_IMETHOD SetSpeechRate(const nsString& aSpeechRate) { return _to##SetSpeechRate(aSpeechRate); } \
NS_IMETHOD GetStress(nsString& aStress) { return _to##GetStress(aStress); } \
NS_IMETHOD SetStress(const nsString& aStress) { return _to##SetStress(aStress); } \
NS_IMETHOD GetTableLayout(nsString& aTableLayout) { return _to##GetTableLayout(aTableLayout); } \
NS_IMETHOD SetTableLayout(const nsString& aTableLayout) { return _to##SetTableLayout(aTableLayout); } \
NS_IMETHOD GetTextAlign(nsString& aTextAlign) { return _to##GetTextAlign(aTextAlign); } \
NS_IMETHOD SetTextAlign(const nsString& aTextAlign) { return _to##SetTextAlign(aTextAlign); } \
NS_IMETHOD GetTextDecoration(nsString& aTextDecoration) { return _to##GetTextDecoration(aTextDecoration); } \
NS_IMETHOD SetTextDecoration(const nsString& aTextDecoration) { return _to##SetTextDecoration(aTextDecoration); } \
NS_IMETHOD GetTextIndent(nsString& aTextIndent) { return _to##GetTextIndent(aTextIndent); } \
NS_IMETHOD SetTextIndent(const nsString& aTextIndent) { return _to##SetTextIndent(aTextIndent); } \
NS_IMETHOD GetTextShadow(nsString& aTextShadow) { return _to##GetTextShadow(aTextShadow); } \
NS_IMETHOD SetTextShadow(const nsString& aTextShadow) { return _to##SetTextShadow(aTextShadow); } \
NS_IMETHOD GetTextTransform(nsString& aTextTransform) { return _to##GetTextTransform(aTextTransform); } \
NS_IMETHOD SetTextTransform(const nsString& aTextTransform) { return _to##SetTextTransform(aTextTransform); } \
NS_IMETHOD GetTop(nsString& aTop) { return _to##GetTop(aTop); } \
NS_IMETHOD SetTop(const nsString& aTop) { return _to##SetTop(aTop); } \
NS_IMETHOD GetUnicodeBidi(nsString& aUnicodeBidi) { return _to##GetUnicodeBidi(aUnicodeBidi); } \
NS_IMETHOD SetUnicodeBidi(const nsString& aUnicodeBidi) { return _to##SetUnicodeBidi(aUnicodeBidi); } \
NS_IMETHOD GetVerticalAlign(nsString& aVerticalAlign) { return _to##GetVerticalAlign(aVerticalAlign); } \
NS_IMETHOD SetVerticalAlign(const nsString& aVerticalAlign) { return _to##SetVerticalAlign(aVerticalAlign); } \
NS_IMETHOD GetVisibility(nsString& aVisibility) { return _to##GetVisibility(aVisibility); } \
NS_IMETHOD SetVisibility(const nsString& aVisibility) { return _to##SetVisibility(aVisibility); } \
NS_IMETHOD GetVoiceFamily(nsString& aVoiceFamily) { return _to##GetVoiceFamily(aVoiceFamily); } \
NS_IMETHOD SetVoiceFamily(const nsString& aVoiceFamily) { return _to##SetVoiceFamily(aVoiceFamily); } \
NS_IMETHOD GetVolume(nsString& aVolume) { return _to##GetVolume(aVolume); } \
NS_IMETHOD SetVolume(const nsString& aVolume) { return _to##SetVolume(aVolume); } \
NS_IMETHOD GetWhiteSpace(nsString& aWhiteSpace) { return _to##GetWhiteSpace(aWhiteSpace); } \
NS_IMETHOD SetWhiteSpace(const nsString& aWhiteSpace) { return _to##SetWhiteSpace(aWhiteSpace); } \
NS_IMETHOD GetWidows(nsString& aWidows) { return _to##GetWidows(aWidows); } \
NS_IMETHOD SetWidows(const nsString& aWidows) { return _to##SetWidows(aWidows); } \
NS_IMETHOD GetWidth(nsString& aWidth) { return _to##GetWidth(aWidth); } \
NS_IMETHOD SetWidth(const nsString& aWidth) { return _to##SetWidth(aWidth); } \
NS_IMETHOD GetWordSpacing(nsString& aWordSpacing) { return _to##GetWordSpacing(aWordSpacing); } \
NS_IMETHOD SetWordSpacing(const nsString& aWordSpacing) { return _to##SetWordSpacing(aWordSpacing); } \
NS_IMETHOD GetZIndex(nsString& aZIndex) { return _to##GetZIndex(aZIndex); } \
NS_IMETHOD SetZIndex(const nsString& aZIndex) { return _to##SetZIndex(aZIndex); } \
NS_IMETHOD GetOpacity(nsString& aOpacity) { return _to##GetOpacity(aOpacity); } \
NS_IMETHOD SetOpacity(const nsString& aOpacity) { return _to##SetOpacity(aOpacity); } \
extern nsresult NS_InitCSS2PropertiesClass(nsIScriptContext *aContext, void **aPrototype);
extern "C" NS_DOM nsresult NS_NewScriptCSS2Properties(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn);
#endif // nsIDOMCSS2Properties_h__

View File

@@ -23,7 +23,7 @@
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
#include "nsIDOMCSSStyleRule.h"
#include "nsIDOMCSSRule.h"
class nsIDOMCSSStyleDeclaration;
@@ -31,7 +31,7 @@ class nsIDOMCSSStyleDeclaration;
{ 0xa6cf90bb, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } }
class nsIDOMCSSFontFaceRule : public nsIDOMCSSStyleRule {
class nsIDOMCSSFontFaceRule : public nsIDOMCSSRule {
public:
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle)=0;

View File

@@ -0,0 +1,68 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/* AUTO-GENERATED. DO NOT EDIT!!! */
#ifndef nsIDOMCSSImportRule_h__
#define nsIDOMCSSImportRule_h__
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
#include "nsIDOMCSSRule.h"
class nsIDOMCSSStyleSheet;
#define NS_IDOMCSSIMPORTRULE_IID \
{ 0xa6cf90cf, 0x15b3, 0x11d2, \
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} }
class nsIDOMCSSImportRule : public nsIDOMCSSRule {
public:
NS_IMETHOD GetHref(nsString& aHref)=0;
NS_IMETHOD SetHref(const nsString& aHref)=0;
NS_IMETHOD GetMedia(nsString& aMedia)=0;
NS_IMETHOD SetMedia(const nsString& aMedia)=0;
NS_IMETHOD GetStyleSheet(nsIDOMCSSStyleSheet** aStyleSheet)=0;
};
#define NS_DECL_IDOMCSSIMPORTRULE \
NS_IMETHOD GetHref(nsString& aHref); \
NS_IMETHOD SetHref(const nsString& aHref); \
NS_IMETHOD GetMedia(nsString& aMedia); \
NS_IMETHOD SetMedia(const nsString& aMedia); \
NS_IMETHOD GetStyleSheet(nsIDOMCSSStyleSheet** aStyleSheet); \
#define NS_FORWARD_IDOMCSSIMPORTRULE(_to) \
NS_IMETHOD GetHref(nsString& aHref) { return _to##GetHref(aHref); } \
NS_IMETHOD SetHref(const nsString& aHref) { return _to##SetHref(aHref); } \
NS_IMETHOD GetMedia(nsString& aMedia) { return _to##GetMedia(aMedia); } \
NS_IMETHOD SetMedia(const nsString& aMedia) { return _to##SetMedia(aMedia); } \
NS_IMETHOD GetStyleSheet(nsIDOMCSSStyleSheet** aStyleSheet) { return _to##GetStyleSheet(aStyleSheet); } \
extern nsresult NS_InitCSSImportRuleClass(nsIScriptContext *aContext, void **aPrototype);
extern "C" NS_DOM nsresult NS_NewScriptCSSImportRule(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn);
#endif // nsIDOMCSSImportRule_h__

View File

@@ -23,7 +23,7 @@
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
#include "nsIDOMCSSStyleRule.h"
#include "nsIDOMCSSRule.h"
class nsIDOMCSSStyleRuleCollection;
@@ -31,35 +31,35 @@ class nsIDOMCSSStyleRuleCollection;
{ 0xa6cf90bc, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } }
class nsIDOMCSSMediaRule : public nsIDOMCSSStyleRule {
class nsIDOMCSSMediaRule : public nsIDOMCSSRule {
public:
NS_IMETHOD GetMediaTypes(nsString& aMediaTypes)=0;
NS_IMETHOD SetMediaTypes(const nsString& aMediaTypes)=0;
NS_IMETHOD GetRules(nsIDOMCSSStyleRuleCollection** aRules)=0;
NS_IMETHOD GetCssRules(nsIDOMCSSStyleRuleCollection** aCssRules)=0;
NS_IMETHOD AddRule(const nsString& aSelector, const nsString& aDeclaration, PRUint32 aIndex, PRUint32* aReturn)=0;
NS_IMETHOD InsertRule(const nsString& aRule, PRUint32 aIndex, PRUint32* aReturn)=0;
NS_IMETHOD RemoveRule(PRUint32 aIndex)=0;
NS_IMETHOD DeleteRule(PRUint32 aIndex)=0;
};
#define NS_DECL_IDOMCSSMEDIARULE \
NS_IMETHOD GetMediaTypes(nsString& aMediaTypes); \
NS_IMETHOD SetMediaTypes(const nsString& aMediaTypes); \
NS_IMETHOD GetRules(nsIDOMCSSStyleRuleCollection** aRules); \
NS_IMETHOD AddRule(const nsString& aSelector, const nsString& aDeclaration, PRUint32 aIndex, PRUint32* aReturn); \
NS_IMETHOD RemoveRule(PRUint32 aIndex); \
NS_IMETHOD GetCssRules(nsIDOMCSSStyleRuleCollection** aCssRules); \
NS_IMETHOD InsertRule(const nsString& aRule, PRUint32 aIndex, PRUint32* aReturn); \
NS_IMETHOD DeleteRule(PRUint32 aIndex); \
#define NS_FORWARD_IDOMCSSMEDIARULE(_to) \
NS_IMETHOD GetMediaTypes(nsString& aMediaTypes) { return _to##GetMediaTypes(aMediaTypes); } \
NS_IMETHOD SetMediaTypes(const nsString& aMediaTypes) { return _to##SetMediaTypes(aMediaTypes); } \
NS_IMETHOD GetRules(nsIDOMCSSStyleRuleCollection** aRules) { return _to##GetRules(aRules); } \
NS_IMETHOD AddRule(const nsString& aSelector, const nsString& aDeclaration, PRUint32 aIndex, PRUint32* aReturn) { return _to##AddRule(aSelector, aDeclaration, aIndex, aReturn); } \
NS_IMETHOD RemoveRule(PRUint32 aIndex) { return _to##RemoveRule(aIndex); } \
NS_IMETHOD GetCssRules(nsIDOMCSSStyleRuleCollection** aCssRules) { return _to##GetCssRules(aCssRules); } \
NS_IMETHOD InsertRule(const nsString& aRule, PRUint32 aIndex, PRUint32* aReturn) { return _to##InsertRule(aRule, aIndex, aReturn); } \
NS_IMETHOD DeleteRule(PRUint32 aIndex) { return _to##DeleteRule(aIndex); } \
extern nsresult NS_InitCSSMediaRuleClass(nsIScriptContext *aContext, void **aPrototype);

View File

@@ -23,7 +23,7 @@
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
#include "nsIDOMCSSStyleRule.h"
#include "nsIDOMCSSRule.h"
class nsIDOMCSSStyleDeclaration;
@@ -31,11 +31,11 @@ class nsIDOMCSSStyleDeclaration;
{ 0xa6cf90bd, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } }
class nsIDOMCSSPageRule : public nsIDOMCSSStyleRule {
class nsIDOMCSSPageRule : public nsIDOMCSSRule {
public:
NS_IMETHOD GetSelectorText(nsString& aSelectorText)=0;
NS_IMETHOD SetSelectorText(const nsString& aSelectorText)=0;
NS_IMETHOD GetName(nsString& aName)=0;
NS_IMETHOD SetName(const nsString& aName)=0;
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle)=0;
NS_IMETHOD SetStyle(nsIDOMCSSStyleDeclaration* aStyle)=0;
@@ -43,16 +43,16 @@ public:
#define NS_DECL_IDOMCSSPAGERULE \
NS_IMETHOD GetSelectorText(nsString& aSelectorText); \
NS_IMETHOD SetSelectorText(const nsString& aSelectorText); \
NS_IMETHOD GetName(nsString& aName); \
NS_IMETHOD SetName(const nsString& aName); \
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle); \
NS_IMETHOD SetStyle(nsIDOMCSSStyleDeclaration* aStyle); \
#define NS_FORWARD_IDOMCSSPAGERULE(_to) \
NS_IMETHOD GetSelectorText(nsString& aSelectorText) { return _to##GetSelectorText(aSelectorText); } \
NS_IMETHOD SetSelectorText(const nsString& aSelectorText) { return _to##SetSelectorText(aSelectorText); } \
NS_IMETHOD GetName(nsString& aName) { return _to##GetName(aName); } \
NS_IMETHOD SetName(const nsString& aName) { return _to##SetName(aName); } \
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle) { return _to##GetStyle(aStyle); } \
NS_IMETHOD SetStyle(nsIDOMCSSStyleDeclaration* aStyle) { return _to##SetStyle(aStyle); } \

View File

@@ -0,0 +1,72 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/* AUTO-GENERATED. DO NOT EDIT!!! */
#ifndef nsIDOMCSSRule_h__
#define nsIDOMCSSRule_h__
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
class nsIDOMCSSStyleSheet;
#define NS_IDOMCSSRULE_IID \
{ 0xa6cf90c1, 0x15b3, 0x11d2, \
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} }
class nsIDOMCSSRule : public nsISupports {
public:
enum {
UNKNOWN_RULE = 14005568,
STYLE_RULE = 1,
IMPORT_RULE = 2,
MEDIA_RULE = 3,
FONT_FACE_RULE = 4,
PAGE_RULE = 5
};
NS_IMETHOD GetType(PRUint16* aType)=0;
NS_IMETHOD GetCssText(nsString& aCssText)=0;
NS_IMETHOD SetCssText(const nsString& aCssText)=0;
NS_IMETHOD GetSheet(nsIDOMCSSStyleSheet** aSheet)=0;
};
#define NS_DECL_IDOMCSSRULE \
NS_IMETHOD GetType(PRUint16* aType); \
NS_IMETHOD GetCssText(nsString& aCssText); \
NS_IMETHOD SetCssText(const nsString& aCssText); \
NS_IMETHOD GetSheet(nsIDOMCSSStyleSheet** aSheet); \
#define NS_FORWARD_IDOMCSSRULE(_to) \
NS_IMETHOD GetType(PRUint16* aType) { return _to##GetType(aType); } \
NS_IMETHOD GetCssText(nsString& aCssText) { return _to##GetCssText(aCssText); } \
NS_IMETHOD SetCssText(const nsString& aCssText) { return _to##SetCssText(aCssText); } \
NS_IMETHOD GetSheet(nsIDOMCSSStyleSheet** aSheet) { return _to##GetSheet(aSheet); } \
extern nsresult NS_InitCSSRuleClass(nsIScriptContext *aContext, void **aPrototype);
extern "C" NS_DOM nsresult NS_NewScriptCSSRule(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn);
#endif // nsIDOMCSSRule_h__

View File

@@ -32,377 +32,11 @@
class nsIDOMCSSStyleDeclaration : public nsISupports {
public:
NS_IMETHOD GetCssText(nsString& aCssText)=0;
NS_IMETHOD SetCssText(const nsString& aCssText)=0;
NS_IMETHOD GetLength(PRUint32* aLength)=0;
NS_IMETHOD GetAzimuth(nsString& aAzimuth)=0;
NS_IMETHOD SetAzimuth(const nsString& aAzimuth)=0;
NS_IMETHOD GetBackground(nsString& aBackground)=0;
NS_IMETHOD SetBackground(const nsString& aBackground)=0;
NS_IMETHOD GetBackgroundAttachment(nsString& aBackgroundAttachment)=0;
NS_IMETHOD SetBackgroundAttachment(const nsString& aBackgroundAttachment)=0;
NS_IMETHOD GetBackgroundColor(nsString& aBackgroundColor)=0;
NS_IMETHOD SetBackgroundColor(const nsString& aBackgroundColor)=0;
NS_IMETHOD GetBackgroundImage(nsString& aBackgroundImage)=0;
NS_IMETHOD SetBackgroundImage(const nsString& aBackgroundImage)=0;
NS_IMETHOD GetBackgroundPosition(nsString& aBackgroundPosition)=0;
NS_IMETHOD SetBackgroundPosition(const nsString& aBackgroundPosition)=0;
NS_IMETHOD GetBackgroundRepeat(nsString& aBackgroundRepeat)=0;
NS_IMETHOD SetBackgroundRepeat(const nsString& aBackgroundRepeat)=0;
NS_IMETHOD GetBorder(nsString& aBorder)=0;
NS_IMETHOD SetBorder(const nsString& aBorder)=0;
NS_IMETHOD GetBorderCollapse(nsString& aBorderCollapse)=0;
NS_IMETHOD SetBorderCollapse(const nsString& aBorderCollapse)=0;
NS_IMETHOD GetBorderColor(nsString& aBorderColor)=0;
NS_IMETHOD SetBorderColor(const nsString& aBorderColor)=0;
NS_IMETHOD GetBorderSpacing(nsString& aBorderSpacing)=0;
NS_IMETHOD SetBorderSpacing(const nsString& aBorderSpacing)=0;
NS_IMETHOD GetBorderStyle(nsString& aBorderStyle)=0;
NS_IMETHOD SetBorderStyle(const nsString& aBorderStyle)=0;
NS_IMETHOD GetBorderTop(nsString& aBorderTop)=0;
NS_IMETHOD SetBorderTop(const nsString& aBorderTop)=0;
NS_IMETHOD GetBorderRight(nsString& aBorderRight)=0;
NS_IMETHOD SetBorderRight(const nsString& aBorderRight)=0;
NS_IMETHOD GetBorderBottom(nsString& aBorderBottom)=0;
NS_IMETHOD SetBorderBottom(const nsString& aBorderBottom)=0;
NS_IMETHOD GetBorderLeft(nsString& aBorderLeft)=0;
NS_IMETHOD SetBorderLeft(const nsString& aBorderLeft)=0;
NS_IMETHOD GetBorderTopColor(nsString& aBorderTopColor)=0;
NS_IMETHOD SetBorderTopColor(const nsString& aBorderTopColor)=0;
NS_IMETHOD GetBorderRightColor(nsString& aBorderRightColor)=0;
NS_IMETHOD SetBorderRightColor(const nsString& aBorderRightColor)=0;
NS_IMETHOD GetBorderBottomColor(nsString& aBorderBottomColor)=0;
NS_IMETHOD SetBorderBottomColor(const nsString& aBorderBottomColor)=0;
NS_IMETHOD GetBorderLeftColor(nsString& aBorderLeftColor)=0;
NS_IMETHOD SetBorderLeftColor(const nsString& aBorderLeftColor)=0;
NS_IMETHOD GetBorderTopStyle(nsString& aBorderTopStyle)=0;
NS_IMETHOD SetBorderTopStyle(const nsString& aBorderTopStyle)=0;
NS_IMETHOD GetBorderRightStyle(nsString& aBorderRightStyle)=0;
NS_IMETHOD SetBorderRightStyle(const nsString& aBorderRightStyle)=0;
NS_IMETHOD GetBorderBottomStyle(nsString& aBorderBottomStyle)=0;
NS_IMETHOD SetBorderBottomStyle(const nsString& aBorderBottomStyle)=0;
NS_IMETHOD GetBorderLeftStyle(nsString& aBorderLeftStyle)=0;
NS_IMETHOD SetBorderLeftStyle(const nsString& aBorderLeftStyle)=0;
NS_IMETHOD GetBorderTopWidth(nsString& aBorderTopWidth)=0;
NS_IMETHOD SetBorderTopWidth(const nsString& aBorderTopWidth)=0;
NS_IMETHOD GetBorderRightWidth(nsString& aBorderRightWidth)=0;
NS_IMETHOD SetBorderRightWidth(const nsString& aBorderRightWidth)=0;
NS_IMETHOD GetBorderBottomWidth(nsString& aBorderBottomWidth)=0;
NS_IMETHOD SetBorderBottomWidth(const nsString& aBorderBottomWidth)=0;
NS_IMETHOD GetBorderLeftWidth(nsString& aBorderLeftWidth)=0;
NS_IMETHOD SetBorderLeftWidth(const nsString& aBorderLeftWidth)=0;
NS_IMETHOD GetBorderWidth(nsString& aBorderWidth)=0;
NS_IMETHOD SetBorderWidth(const nsString& aBorderWidth)=0;
NS_IMETHOD GetBottom(nsString& aBottom)=0;
NS_IMETHOD SetBottom(const nsString& aBottom)=0;
NS_IMETHOD GetCaptionSide(nsString& aCaptionSide)=0;
NS_IMETHOD SetCaptionSide(const nsString& aCaptionSide)=0;
NS_IMETHOD GetClear(nsString& aClear)=0;
NS_IMETHOD SetClear(const nsString& aClear)=0;
NS_IMETHOD GetClip(nsString& aClip)=0;
NS_IMETHOD SetClip(const nsString& aClip)=0;
NS_IMETHOD GetColor(nsString& aColor)=0;
NS_IMETHOD SetColor(const nsString& aColor)=0;
NS_IMETHOD GetContent(nsString& aContent)=0;
NS_IMETHOD SetContent(const nsString& aContent)=0;
NS_IMETHOD GetCounterIncrement(nsString& aCounterIncrement)=0;
NS_IMETHOD SetCounterIncrement(const nsString& aCounterIncrement)=0;
NS_IMETHOD GetCounterReset(nsString& aCounterReset)=0;
NS_IMETHOD SetCounterReset(const nsString& aCounterReset)=0;
NS_IMETHOD GetCue(nsString& aCue)=0;
NS_IMETHOD SetCue(const nsString& aCue)=0;
NS_IMETHOD GetCueAfter(nsString& aCueAfter)=0;
NS_IMETHOD SetCueAfter(const nsString& aCueAfter)=0;
NS_IMETHOD GetCueBefore(nsString& aCueBefore)=0;
NS_IMETHOD SetCueBefore(const nsString& aCueBefore)=0;
NS_IMETHOD GetCursor(nsString& aCursor)=0;
NS_IMETHOD SetCursor(const nsString& aCursor)=0;
NS_IMETHOD GetDirection(nsString& aDirection)=0;
NS_IMETHOD SetDirection(const nsString& aDirection)=0;
NS_IMETHOD GetDisplay(nsString& aDisplay)=0;
NS_IMETHOD SetDisplay(const nsString& aDisplay)=0;
NS_IMETHOD GetElevation(nsString& aElevation)=0;
NS_IMETHOD SetElevation(const nsString& aElevation)=0;
NS_IMETHOD GetEmptyCells(nsString& aEmptyCells)=0;
NS_IMETHOD SetEmptyCells(const nsString& aEmptyCells)=0;
NS_IMETHOD GetStyleFloat(nsString& aStyleFloat)=0;
NS_IMETHOD SetStyleFloat(const nsString& aStyleFloat)=0;
NS_IMETHOD GetFont(nsString& aFont)=0;
NS_IMETHOD SetFont(const nsString& aFont)=0;
NS_IMETHOD GetFontFamily(nsString& aFontFamily)=0;
NS_IMETHOD SetFontFamily(const nsString& aFontFamily)=0;
NS_IMETHOD GetFontSize(nsString& aFontSize)=0;
NS_IMETHOD SetFontSize(const nsString& aFontSize)=0;
NS_IMETHOD GetFontSizeAdjust(nsString& aFontSizeAdjust)=0;
NS_IMETHOD SetFontSizeAdjust(const nsString& aFontSizeAdjust)=0;
NS_IMETHOD GetFontStretch(nsString& aFontStretch)=0;
NS_IMETHOD SetFontStretch(const nsString& aFontStretch)=0;
NS_IMETHOD GetFontStyle(nsString& aFontStyle)=0;
NS_IMETHOD SetFontStyle(const nsString& aFontStyle)=0;
NS_IMETHOD GetFontVariant(nsString& aFontVariant)=0;
NS_IMETHOD SetFontVariant(const nsString& aFontVariant)=0;
NS_IMETHOD GetFontWeight(nsString& aFontWeight)=0;
NS_IMETHOD SetFontWeight(const nsString& aFontWeight)=0;
NS_IMETHOD GetHeight(nsString& aHeight)=0;
NS_IMETHOD SetHeight(const nsString& aHeight)=0;
NS_IMETHOD GetLeft(nsString& aLeft)=0;
NS_IMETHOD SetLeft(const nsString& aLeft)=0;
NS_IMETHOD GetLetterSpacing(nsString& aLetterSpacing)=0;
NS_IMETHOD SetLetterSpacing(const nsString& aLetterSpacing)=0;
NS_IMETHOD GetLineHeight(nsString& aLineHeight)=0;
NS_IMETHOD SetLineHeight(const nsString& aLineHeight)=0;
NS_IMETHOD GetListStyle(nsString& aListStyle)=0;
NS_IMETHOD SetListStyle(const nsString& aListStyle)=0;
NS_IMETHOD GetListStyleImage(nsString& aListStyleImage)=0;
NS_IMETHOD SetListStyleImage(const nsString& aListStyleImage)=0;
NS_IMETHOD GetListStylePosition(nsString& aListStylePosition)=0;
NS_IMETHOD SetListStylePosition(const nsString& aListStylePosition)=0;
NS_IMETHOD GetListStyleType(nsString& aListStyleType)=0;
NS_IMETHOD SetListStyleType(const nsString& aListStyleType)=0;
NS_IMETHOD GetMargin(nsString& aMargin)=0;
NS_IMETHOD SetMargin(const nsString& aMargin)=0;
NS_IMETHOD GetMarginTop(nsString& aMarginTop)=0;
NS_IMETHOD SetMarginTop(const nsString& aMarginTop)=0;
NS_IMETHOD GetMarginRight(nsString& aMarginRight)=0;
NS_IMETHOD SetMarginRight(const nsString& aMarginRight)=0;
NS_IMETHOD GetMarginBottom(nsString& aMarginBottom)=0;
NS_IMETHOD SetMarginBottom(const nsString& aMarginBottom)=0;
NS_IMETHOD GetMarginLeft(nsString& aMarginLeft)=0;
NS_IMETHOD SetMarginLeft(const nsString& aMarginLeft)=0;
NS_IMETHOD GetMarkerOffset(nsString& aMarkerOffset)=0;
NS_IMETHOD SetMarkerOffset(const nsString& aMarkerOffset)=0;
NS_IMETHOD GetMarks(nsString& aMarks)=0;
NS_IMETHOD SetMarks(const nsString& aMarks)=0;
NS_IMETHOD GetMaxHeight(nsString& aMaxHeight)=0;
NS_IMETHOD SetMaxHeight(const nsString& aMaxHeight)=0;
NS_IMETHOD GetMaxWidth(nsString& aMaxWidth)=0;
NS_IMETHOD SetMaxWidth(const nsString& aMaxWidth)=0;
NS_IMETHOD GetMinHeight(nsString& aMinHeight)=0;
NS_IMETHOD SetMinHeight(const nsString& aMinHeight)=0;
NS_IMETHOD GetMinWidth(nsString& aMinWidth)=0;
NS_IMETHOD SetMinWidth(const nsString& aMinWidth)=0;
NS_IMETHOD GetOrphans(nsString& aOrphans)=0;
NS_IMETHOD SetOrphans(const nsString& aOrphans)=0;
NS_IMETHOD GetOutline(nsString& aOutline)=0;
NS_IMETHOD SetOutline(const nsString& aOutline)=0;
NS_IMETHOD GetOutlineColor(nsString& aOutlineColor)=0;
NS_IMETHOD SetOutlineColor(const nsString& aOutlineColor)=0;
NS_IMETHOD GetOutlineStyle(nsString& aOutlineStyle)=0;
NS_IMETHOD SetOutlineStyle(const nsString& aOutlineStyle)=0;
NS_IMETHOD GetOutlineWidth(nsString& aOutlineWidth)=0;
NS_IMETHOD SetOutlineWidth(const nsString& aOutlineWidth)=0;
NS_IMETHOD GetOverflow(nsString& aOverflow)=0;
NS_IMETHOD SetOverflow(const nsString& aOverflow)=0;
NS_IMETHOD GetPadding(nsString& aPadding)=0;
NS_IMETHOD SetPadding(const nsString& aPadding)=0;
NS_IMETHOD GetPaddingTop(nsString& aPaddingTop)=0;
NS_IMETHOD SetPaddingTop(const nsString& aPaddingTop)=0;
NS_IMETHOD GetPaddingRight(nsString& aPaddingRight)=0;
NS_IMETHOD SetPaddingRight(const nsString& aPaddingRight)=0;
NS_IMETHOD GetPaddingBottom(nsString& aPaddingBottom)=0;
NS_IMETHOD SetPaddingBottom(const nsString& aPaddingBottom)=0;
NS_IMETHOD GetPaddingLeft(nsString& aPaddingLeft)=0;
NS_IMETHOD SetPaddingLeft(const nsString& aPaddingLeft)=0;
NS_IMETHOD GetPage(nsString& aPage)=0;
NS_IMETHOD SetPage(const nsString& aPage)=0;
NS_IMETHOD GetPageBreakAfter(nsString& aPageBreakAfter)=0;
NS_IMETHOD SetPageBreakAfter(const nsString& aPageBreakAfter)=0;
NS_IMETHOD GetPageBreakBefore(nsString& aPageBreakBefore)=0;
NS_IMETHOD SetPageBreakBefore(const nsString& aPageBreakBefore)=0;
NS_IMETHOD GetPageBreakInside(nsString& aPageBreakInside)=0;
NS_IMETHOD SetPageBreakInside(const nsString& aPageBreakInside)=0;
NS_IMETHOD GetPause(nsString& aPause)=0;
NS_IMETHOD SetPause(const nsString& aPause)=0;
NS_IMETHOD GetPauseAfter(nsString& aPauseAfter)=0;
NS_IMETHOD SetPauseAfter(const nsString& aPauseAfter)=0;
NS_IMETHOD GetPauseBefore(nsString& aPauseBefore)=0;
NS_IMETHOD SetPauseBefore(const nsString& aPauseBefore)=0;
NS_IMETHOD GetPitch(nsString& aPitch)=0;
NS_IMETHOD SetPitch(const nsString& aPitch)=0;
NS_IMETHOD GetPitchRange(nsString& aPitchRange)=0;
NS_IMETHOD SetPitchRange(const nsString& aPitchRange)=0;
NS_IMETHOD GetPlayDuring(nsString& aPlayDuring)=0;
NS_IMETHOD SetPlayDuring(const nsString& aPlayDuring)=0;
NS_IMETHOD GetPosition(nsString& aPosition)=0;
NS_IMETHOD SetPosition(const nsString& aPosition)=0;
NS_IMETHOD GetQuotes(nsString& aQuotes)=0;
NS_IMETHOD SetQuotes(const nsString& aQuotes)=0;
NS_IMETHOD GetRichness(nsString& aRichness)=0;
NS_IMETHOD SetRichness(const nsString& aRichness)=0;
NS_IMETHOD GetRight(nsString& aRight)=0;
NS_IMETHOD SetRight(const nsString& aRight)=0;
NS_IMETHOD GetSize(nsString& aSize)=0;
NS_IMETHOD SetSize(const nsString& aSize)=0;
NS_IMETHOD GetSpeak(nsString& aSpeak)=0;
NS_IMETHOD SetSpeak(const nsString& aSpeak)=0;
NS_IMETHOD GetSpeakHeader(nsString& aSpeakHeader)=0;
NS_IMETHOD SetSpeakHeader(const nsString& aSpeakHeader)=0;
NS_IMETHOD GetSpeakNumeral(nsString& aSpeakNumeral)=0;
NS_IMETHOD SetSpeakNumeral(const nsString& aSpeakNumeral)=0;
NS_IMETHOD GetSpeakPunctuation(nsString& aSpeakPunctuation)=0;
NS_IMETHOD SetSpeakPunctuation(const nsString& aSpeakPunctuation)=0;
NS_IMETHOD GetSpeechRate(nsString& aSpeechRate)=0;
NS_IMETHOD SetSpeechRate(const nsString& aSpeechRate)=0;
NS_IMETHOD GetStress(nsString& aStress)=0;
NS_IMETHOD SetStress(const nsString& aStress)=0;
NS_IMETHOD GetTableLayout(nsString& aTableLayout)=0;
NS_IMETHOD SetTableLayout(const nsString& aTableLayout)=0;
NS_IMETHOD GetTextAlign(nsString& aTextAlign)=0;
NS_IMETHOD SetTextAlign(const nsString& aTextAlign)=0;
NS_IMETHOD GetTextDecoration(nsString& aTextDecoration)=0;
NS_IMETHOD SetTextDecoration(const nsString& aTextDecoration)=0;
NS_IMETHOD GetTextIndent(nsString& aTextIndent)=0;
NS_IMETHOD SetTextIndent(const nsString& aTextIndent)=0;
NS_IMETHOD GetTextShadow(nsString& aTextShadow)=0;
NS_IMETHOD SetTextShadow(const nsString& aTextShadow)=0;
NS_IMETHOD GetTextTransform(nsString& aTextTransform)=0;
NS_IMETHOD SetTextTransform(const nsString& aTextTransform)=0;
NS_IMETHOD GetTop(nsString& aTop)=0;
NS_IMETHOD SetTop(const nsString& aTop)=0;
NS_IMETHOD GetUnicodeBidi(nsString& aUnicodeBidi)=0;
NS_IMETHOD SetUnicodeBidi(const nsString& aUnicodeBidi)=0;
NS_IMETHOD GetVerticalAlign(nsString& aVerticalAlign)=0;
NS_IMETHOD SetVerticalAlign(const nsString& aVerticalAlign)=0;
NS_IMETHOD GetVisibility(nsString& aVisibility)=0;
NS_IMETHOD SetVisibility(const nsString& aVisibility)=0;
NS_IMETHOD GetVoiceFamily(nsString& aVoiceFamily)=0;
NS_IMETHOD SetVoiceFamily(const nsString& aVoiceFamily)=0;
NS_IMETHOD GetVolume(nsString& aVolume)=0;
NS_IMETHOD SetVolume(const nsString& aVolume)=0;
NS_IMETHOD GetWhiteSpace(nsString& aWhiteSpace)=0;
NS_IMETHOD SetWhiteSpace(const nsString& aWhiteSpace)=0;
NS_IMETHOD GetWidows(nsString& aWidows)=0;
NS_IMETHOD SetWidows(const nsString& aWidows)=0;
NS_IMETHOD GetWidth(nsString& aWidth)=0;
NS_IMETHOD SetWidth(const nsString& aWidth)=0;
NS_IMETHOD GetWordSpacing(nsString& aWordSpacing)=0;
NS_IMETHOD SetWordSpacing(const nsString& aWordSpacing)=0;
NS_IMETHOD GetZIndex(nsString& aZIndex)=0;
NS_IMETHOD SetZIndex(const nsString& aZIndex)=0;
NS_IMETHOD GetOpacity(nsString& aOpacity)=0;
NS_IMETHOD SetOpacity(const nsString& aOpacity)=0;
NS_IMETHOD GetPropertyValue(const nsString& aPropertyName, nsString& aReturn)=0;
NS_IMETHOD GetPropertyPriority(const nsString& aPropertyName, nsString& aReturn)=0;
@@ -414,253 +48,9 @@ public:
#define NS_DECL_IDOMCSSSTYLEDECLARATION \
NS_IMETHOD GetCssText(nsString& aCssText); \
NS_IMETHOD SetCssText(const nsString& aCssText); \
NS_IMETHOD GetLength(PRUint32* aLength); \
NS_IMETHOD GetAzimuth(nsString& aAzimuth); \
NS_IMETHOD SetAzimuth(const nsString& aAzimuth); \
NS_IMETHOD GetBackground(nsString& aBackground); \
NS_IMETHOD SetBackground(const nsString& aBackground); \
NS_IMETHOD GetBackgroundAttachment(nsString& aBackgroundAttachment); \
NS_IMETHOD SetBackgroundAttachment(const nsString& aBackgroundAttachment); \
NS_IMETHOD GetBackgroundColor(nsString& aBackgroundColor); \
NS_IMETHOD SetBackgroundColor(const nsString& aBackgroundColor); \
NS_IMETHOD GetBackgroundImage(nsString& aBackgroundImage); \
NS_IMETHOD SetBackgroundImage(const nsString& aBackgroundImage); \
NS_IMETHOD GetBackgroundPosition(nsString& aBackgroundPosition); \
NS_IMETHOD SetBackgroundPosition(const nsString& aBackgroundPosition); \
NS_IMETHOD GetBackgroundRepeat(nsString& aBackgroundRepeat); \
NS_IMETHOD SetBackgroundRepeat(const nsString& aBackgroundRepeat); \
NS_IMETHOD GetBorder(nsString& aBorder); \
NS_IMETHOD SetBorder(const nsString& aBorder); \
NS_IMETHOD GetBorderCollapse(nsString& aBorderCollapse); \
NS_IMETHOD SetBorderCollapse(const nsString& aBorderCollapse); \
NS_IMETHOD GetBorderColor(nsString& aBorderColor); \
NS_IMETHOD SetBorderColor(const nsString& aBorderColor); \
NS_IMETHOD GetBorderSpacing(nsString& aBorderSpacing); \
NS_IMETHOD SetBorderSpacing(const nsString& aBorderSpacing); \
NS_IMETHOD GetBorderStyle(nsString& aBorderStyle); \
NS_IMETHOD SetBorderStyle(const nsString& aBorderStyle); \
NS_IMETHOD GetBorderTop(nsString& aBorderTop); \
NS_IMETHOD SetBorderTop(const nsString& aBorderTop); \
NS_IMETHOD GetBorderRight(nsString& aBorderRight); \
NS_IMETHOD SetBorderRight(const nsString& aBorderRight); \
NS_IMETHOD GetBorderBottom(nsString& aBorderBottom); \
NS_IMETHOD SetBorderBottom(const nsString& aBorderBottom); \
NS_IMETHOD GetBorderLeft(nsString& aBorderLeft); \
NS_IMETHOD SetBorderLeft(const nsString& aBorderLeft); \
NS_IMETHOD GetBorderTopColor(nsString& aBorderTopColor); \
NS_IMETHOD SetBorderTopColor(const nsString& aBorderTopColor); \
NS_IMETHOD GetBorderRightColor(nsString& aBorderRightColor); \
NS_IMETHOD SetBorderRightColor(const nsString& aBorderRightColor); \
NS_IMETHOD GetBorderBottomColor(nsString& aBorderBottomColor); \
NS_IMETHOD SetBorderBottomColor(const nsString& aBorderBottomColor); \
NS_IMETHOD GetBorderLeftColor(nsString& aBorderLeftColor); \
NS_IMETHOD SetBorderLeftColor(const nsString& aBorderLeftColor); \
NS_IMETHOD GetBorderTopStyle(nsString& aBorderTopStyle); \
NS_IMETHOD SetBorderTopStyle(const nsString& aBorderTopStyle); \
NS_IMETHOD GetBorderRightStyle(nsString& aBorderRightStyle); \
NS_IMETHOD SetBorderRightStyle(const nsString& aBorderRightStyle); \
NS_IMETHOD GetBorderBottomStyle(nsString& aBorderBottomStyle); \
NS_IMETHOD SetBorderBottomStyle(const nsString& aBorderBottomStyle); \
NS_IMETHOD GetBorderLeftStyle(nsString& aBorderLeftStyle); \
NS_IMETHOD SetBorderLeftStyle(const nsString& aBorderLeftStyle); \
NS_IMETHOD GetBorderTopWidth(nsString& aBorderTopWidth); \
NS_IMETHOD SetBorderTopWidth(const nsString& aBorderTopWidth); \
NS_IMETHOD GetBorderRightWidth(nsString& aBorderRightWidth); \
NS_IMETHOD SetBorderRightWidth(const nsString& aBorderRightWidth); \
NS_IMETHOD GetBorderBottomWidth(nsString& aBorderBottomWidth); \
NS_IMETHOD SetBorderBottomWidth(const nsString& aBorderBottomWidth); \
NS_IMETHOD GetBorderLeftWidth(nsString& aBorderLeftWidth); \
NS_IMETHOD SetBorderLeftWidth(const nsString& aBorderLeftWidth); \
NS_IMETHOD GetBorderWidth(nsString& aBorderWidth); \
NS_IMETHOD SetBorderWidth(const nsString& aBorderWidth); \
NS_IMETHOD GetBottom(nsString& aBottom); \
NS_IMETHOD SetBottom(const nsString& aBottom); \
NS_IMETHOD GetCaptionSide(nsString& aCaptionSide); \
NS_IMETHOD SetCaptionSide(const nsString& aCaptionSide); \
NS_IMETHOD GetClear(nsString& aClear); \
NS_IMETHOD SetClear(const nsString& aClear); \
NS_IMETHOD GetClip(nsString& aClip); \
NS_IMETHOD SetClip(const nsString& aClip); \
NS_IMETHOD GetColor(nsString& aColor); \
NS_IMETHOD SetColor(const nsString& aColor); \
NS_IMETHOD GetContent(nsString& aContent); \
NS_IMETHOD SetContent(const nsString& aContent); \
NS_IMETHOD GetCounterIncrement(nsString& aCounterIncrement); \
NS_IMETHOD SetCounterIncrement(const nsString& aCounterIncrement); \
NS_IMETHOD GetCounterReset(nsString& aCounterReset); \
NS_IMETHOD SetCounterReset(const nsString& aCounterReset); \
NS_IMETHOD GetCue(nsString& aCue); \
NS_IMETHOD SetCue(const nsString& aCue); \
NS_IMETHOD GetCueAfter(nsString& aCueAfter); \
NS_IMETHOD SetCueAfter(const nsString& aCueAfter); \
NS_IMETHOD GetCueBefore(nsString& aCueBefore); \
NS_IMETHOD SetCueBefore(const nsString& aCueBefore); \
NS_IMETHOD GetCursor(nsString& aCursor); \
NS_IMETHOD SetCursor(const nsString& aCursor); \
NS_IMETHOD GetDirection(nsString& aDirection); \
NS_IMETHOD SetDirection(const nsString& aDirection); \
NS_IMETHOD GetDisplay(nsString& aDisplay); \
NS_IMETHOD SetDisplay(const nsString& aDisplay); \
NS_IMETHOD GetElevation(nsString& aElevation); \
NS_IMETHOD SetElevation(const nsString& aElevation); \
NS_IMETHOD GetEmptyCells(nsString& aEmptyCells); \
NS_IMETHOD SetEmptyCells(const nsString& aEmptyCells); \
NS_IMETHOD GetStyleFloat(nsString& aStyleFloat); \
NS_IMETHOD SetStyleFloat(const nsString& aStyleFloat); \
NS_IMETHOD GetFont(nsString& aFont); \
NS_IMETHOD SetFont(const nsString& aFont); \
NS_IMETHOD GetFontFamily(nsString& aFontFamily); \
NS_IMETHOD SetFontFamily(const nsString& aFontFamily); \
NS_IMETHOD GetFontSize(nsString& aFontSize); \
NS_IMETHOD SetFontSize(const nsString& aFontSize); \
NS_IMETHOD GetFontSizeAdjust(nsString& aFontSizeAdjust); \
NS_IMETHOD SetFontSizeAdjust(const nsString& aFontSizeAdjust); \
NS_IMETHOD GetFontStretch(nsString& aFontStretch); \
NS_IMETHOD SetFontStretch(const nsString& aFontStretch); \
NS_IMETHOD GetFontStyle(nsString& aFontStyle); \
NS_IMETHOD SetFontStyle(const nsString& aFontStyle); \
NS_IMETHOD GetFontVariant(nsString& aFontVariant); \
NS_IMETHOD SetFontVariant(const nsString& aFontVariant); \
NS_IMETHOD GetFontWeight(nsString& aFontWeight); \
NS_IMETHOD SetFontWeight(const nsString& aFontWeight); \
NS_IMETHOD GetHeight(nsString& aHeight); \
NS_IMETHOD SetHeight(const nsString& aHeight); \
NS_IMETHOD GetLeft(nsString& aLeft); \
NS_IMETHOD SetLeft(const nsString& aLeft); \
NS_IMETHOD GetLetterSpacing(nsString& aLetterSpacing); \
NS_IMETHOD SetLetterSpacing(const nsString& aLetterSpacing); \
NS_IMETHOD GetLineHeight(nsString& aLineHeight); \
NS_IMETHOD SetLineHeight(const nsString& aLineHeight); \
NS_IMETHOD GetListStyle(nsString& aListStyle); \
NS_IMETHOD SetListStyle(const nsString& aListStyle); \
NS_IMETHOD GetListStyleImage(nsString& aListStyleImage); \
NS_IMETHOD SetListStyleImage(const nsString& aListStyleImage); \
NS_IMETHOD GetListStylePosition(nsString& aListStylePosition); \
NS_IMETHOD SetListStylePosition(const nsString& aListStylePosition); \
NS_IMETHOD GetListStyleType(nsString& aListStyleType); \
NS_IMETHOD SetListStyleType(const nsString& aListStyleType); \
NS_IMETHOD GetMargin(nsString& aMargin); \
NS_IMETHOD SetMargin(const nsString& aMargin); \
NS_IMETHOD GetMarginTop(nsString& aMarginTop); \
NS_IMETHOD SetMarginTop(const nsString& aMarginTop); \
NS_IMETHOD GetMarginRight(nsString& aMarginRight); \
NS_IMETHOD SetMarginRight(const nsString& aMarginRight); \
NS_IMETHOD GetMarginBottom(nsString& aMarginBottom); \
NS_IMETHOD SetMarginBottom(const nsString& aMarginBottom); \
NS_IMETHOD GetMarginLeft(nsString& aMarginLeft); \
NS_IMETHOD SetMarginLeft(const nsString& aMarginLeft); \
NS_IMETHOD GetMarkerOffset(nsString& aMarkerOffset); \
NS_IMETHOD SetMarkerOffset(const nsString& aMarkerOffset); \
NS_IMETHOD GetMarks(nsString& aMarks); \
NS_IMETHOD SetMarks(const nsString& aMarks); \
NS_IMETHOD GetMaxHeight(nsString& aMaxHeight); \
NS_IMETHOD SetMaxHeight(const nsString& aMaxHeight); \
NS_IMETHOD GetMaxWidth(nsString& aMaxWidth); \
NS_IMETHOD SetMaxWidth(const nsString& aMaxWidth); \
NS_IMETHOD GetMinHeight(nsString& aMinHeight); \
NS_IMETHOD SetMinHeight(const nsString& aMinHeight); \
NS_IMETHOD GetMinWidth(nsString& aMinWidth); \
NS_IMETHOD SetMinWidth(const nsString& aMinWidth); \
NS_IMETHOD GetOrphans(nsString& aOrphans); \
NS_IMETHOD SetOrphans(const nsString& aOrphans); \
NS_IMETHOD GetOutline(nsString& aOutline); \
NS_IMETHOD SetOutline(const nsString& aOutline); \
NS_IMETHOD GetOutlineColor(nsString& aOutlineColor); \
NS_IMETHOD SetOutlineColor(const nsString& aOutlineColor); \
NS_IMETHOD GetOutlineStyle(nsString& aOutlineStyle); \
NS_IMETHOD SetOutlineStyle(const nsString& aOutlineStyle); \
NS_IMETHOD GetOutlineWidth(nsString& aOutlineWidth); \
NS_IMETHOD SetOutlineWidth(const nsString& aOutlineWidth); \
NS_IMETHOD GetOverflow(nsString& aOverflow); \
NS_IMETHOD SetOverflow(const nsString& aOverflow); \
NS_IMETHOD GetPadding(nsString& aPadding); \
NS_IMETHOD SetPadding(const nsString& aPadding); \
NS_IMETHOD GetPaddingTop(nsString& aPaddingTop); \
NS_IMETHOD SetPaddingTop(const nsString& aPaddingTop); \
NS_IMETHOD GetPaddingRight(nsString& aPaddingRight); \
NS_IMETHOD SetPaddingRight(const nsString& aPaddingRight); \
NS_IMETHOD GetPaddingBottom(nsString& aPaddingBottom); \
NS_IMETHOD SetPaddingBottom(const nsString& aPaddingBottom); \
NS_IMETHOD GetPaddingLeft(nsString& aPaddingLeft); \
NS_IMETHOD SetPaddingLeft(const nsString& aPaddingLeft); \
NS_IMETHOD GetPage(nsString& aPage); \
NS_IMETHOD SetPage(const nsString& aPage); \
NS_IMETHOD GetPageBreakAfter(nsString& aPageBreakAfter); \
NS_IMETHOD SetPageBreakAfter(const nsString& aPageBreakAfter); \
NS_IMETHOD GetPageBreakBefore(nsString& aPageBreakBefore); \
NS_IMETHOD SetPageBreakBefore(const nsString& aPageBreakBefore); \
NS_IMETHOD GetPageBreakInside(nsString& aPageBreakInside); \
NS_IMETHOD SetPageBreakInside(const nsString& aPageBreakInside); \
NS_IMETHOD GetPause(nsString& aPause); \
NS_IMETHOD SetPause(const nsString& aPause); \
NS_IMETHOD GetPauseAfter(nsString& aPauseAfter); \
NS_IMETHOD SetPauseAfter(const nsString& aPauseAfter); \
NS_IMETHOD GetPauseBefore(nsString& aPauseBefore); \
NS_IMETHOD SetPauseBefore(const nsString& aPauseBefore); \
NS_IMETHOD GetPitch(nsString& aPitch); \
NS_IMETHOD SetPitch(const nsString& aPitch); \
NS_IMETHOD GetPitchRange(nsString& aPitchRange); \
NS_IMETHOD SetPitchRange(const nsString& aPitchRange); \
NS_IMETHOD GetPlayDuring(nsString& aPlayDuring); \
NS_IMETHOD SetPlayDuring(const nsString& aPlayDuring); \
NS_IMETHOD GetPosition(nsString& aPosition); \
NS_IMETHOD SetPosition(const nsString& aPosition); \
NS_IMETHOD GetQuotes(nsString& aQuotes); \
NS_IMETHOD SetQuotes(const nsString& aQuotes); \
NS_IMETHOD GetRichness(nsString& aRichness); \
NS_IMETHOD SetRichness(const nsString& aRichness); \
NS_IMETHOD GetRight(nsString& aRight); \
NS_IMETHOD SetRight(const nsString& aRight); \
NS_IMETHOD GetSize(nsString& aSize); \
NS_IMETHOD SetSize(const nsString& aSize); \
NS_IMETHOD GetSpeak(nsString& aSpeak); \
NS_IMETHOD SetSpeak(const nsString& aSpeak); \
NS_IMETHOD GetSpeakHeader(nsString& aSpeakHeader); \
NS_IMETHOD SetSpeakHeader(const nsString& aSpeakHeader); \
NS_IMETHOD GetSpeakNumeral(nsString& aSpeakNumeral); \
NS_IMETHOD SetSpeakNumeral(const nsString& aSpeakNumeral); \
NS_IMETHOD GetSpeakPunctuation(nsString& aSpeakPunctuation); \
NS_IMETHOD SetSpeakPunctuation(const nsString& aSpeakPunctuation); \
NS_IMETHOD GetSpeechRate(nsString& aSpeechRate); \
NS_IMETHOD SetSpeechRate(const nsString& aSpeechRate); \
NS_IMETHOD GetStress(nsString& aStress); \
NS_IMETHOD SetStress(const nsString& aStress); \
NS_IMETHOD GetTableLayout(nsString& aTableLayout); \
NS_IMETHOD SetTableLayout(const nsString& aTableLayout); \
NS_IMETHOD GetTextAlign(nsString& aTextAlign); \
NS_IMETHOD SetTextAlign(const nsString& aTextAlign); \
NS_IMETHOD GetTextDecoration(nsString& aTextDecoration); \
NS_IMETHOD SetTextDecoration(const nsString& aTextDecoration); \
NS_IMETHOD GetTextIndent(nsString& aTextIndent); \
NS_IMETHOD SetTextIndent(const nsString& aTextIndent); \
NS_IMETHOD GetTextShadow(nsString& aTextShadow); \
NS_IMETHOD SetTextShadow(const nsString& aTextShadow); \
NS_IMETHOD GetTextTransform(nsString& aTextTransform); \
NS_IMETHOD SetTextTransform(const nsString& aTextTransform); \
NS_IMETHOD GetTop(nsString& aTop); \
NS_IMETHOD SetTop(const nsString& aTop); \
NS_IMETHOD GetUnicodeBidi(nsString& aUnicodeBidi); \
NS_IMETHOD SetUnicodeBidi(const nsString& aUnicodeBidi); \
NS_IMETHOD GetVerticalAlign(nsString& aVerticalAlign); \
NS_IMETHOD SetVerticalAlign(const nsString& aVerticalAlign); \
NS_IMETHOD GetVisibility(nsString& aVisibility); \
NS_IMETHOD SetVisibility(const nsString& aVisibility); \
NS_IMETHOD GetVoiceFamily(nsString& aVoiceFamily); \
NS_IMETHOD SetVoiceFamily(const nsString& aVoiceFamily); \
NS_IMETHOD GetVolume(nsString& aVolume); \
NS_IMETHOD SetVolume(const nsString& aVolume); \
NS_IMETHOD GetWhiteSpace(nsString& aWhiteSpace); \
NS_IMETHOD SetWhiteSpace(const nsString& aWhiteSpace); \
NS_IMETHOD GetWidows(nsString& aWidows); \
NS_IMETHOD SetWidows(const nsString& aWidows); \
NS_IMETHOD GetWidth(nsString& aWidth); \
NS_IMETHOD SetWidth(const nsString& aWidth); \
NS_IMETHOD GetWordSpacing(nsString& aWordSpacing); \
NS_IMETHOD SetWordSpacing(const nsString& aWordSpacing); \
NS_IMETHOD GetZIndex(nsString& aZIndex); \
NS_IMETHOD SetZIndex(const nsString& aZIndex); \
NS_IMETHOD GetOpacity(nsString& aOpacity); \
NS_IMETHOD SetOpacity(const nsString& aOpacity); \
NS_IMETHOD GetPropertyValue(const nsString& aPropertyName, nsString& aReturn); \
NS_IMETHOD GetPropertyPriority(const nsString& aPropertyName, nsString& aReturn); \
NS_IMETHOD SetProperty(const nsString& aPropertyName, const nsString& aValue, const nsString& aPriority); \
@@ -669,253 +59,9 @@ public:
#define NS_FORWARD_IDOMCSSSTYLEDECLARATION(_to) \
NS_IMETHOD GetCssText(nsString& aCssText) { return _to##GetCssText(aCssText); } \
NS_IMETHOD SetCssText(const nsString& aCssText) { return _to##SetCssText(aCssText); } \
NS_IMETHOD GetLength(PRUint32* aLength) { return _to##GetLength(aLength); } \
NS_IMETHOD GetAzimuth(nsString& aAzimuth) { return _to##GetAzimuth(aAzimuth); } \
NS_IMETHOD SetAzimuth(const nsString& aAzimuth) { return _to##SetAzimuth(aAzimuth); } \
NS_IMETHOD GetBackground(nsString& aBackground) { return _to##GetBackground(aBackground); } \
NS_IMETHOD SetBackground(const nsString& aBackground) { return _to##SetBackground(aBackground); } \
NS_IMETHOD GetBackgroundAttachment(nsString& aBackgroundAttachment) { return _to##GetBackgroundAttachment(aBackgroundAttachment); } \
NS_IMETHOD SetBackgroundAttachment(const nsString& aBackgroundAttachment) { return _to##SetBackgroundAttachment(aBackgroundAttachment); } \
NS_IMETHOD GetBackgroundColor(nsString& aBackgroundColor) { return _to##GetBackgroundColor(aBackgroundColor); } \
NS_IMETHOD SetBackgroundColor(const nsString& aBackgroundColor) { return _to##SetBackgroundColor(aBackgroundColor); } \
NS_IMETHOD GetBackgroundImage(nsString& aBackgroundImage) { return _to##GetBackgroundImage(aBackgroundImage); } \
NS_IMETHOD SetBackgroundImage(const nsString& aBackgroundImage) { return _to##SetBackgroundImage(aBackgroundImage); } \
NS_IMETHOD GetBackgroundPosition(nsString& aBackgroundPosition) { return _to##GetBackgroundPosition(aBackgroundPosition); } \
NS_IMETHOD SetBackgroundPosition(const nsString& aBackgroundPosition) { return _to##SetBackgroundPosition(aBackgroundPosition); } \
NS_IMETHOD GetBackgroundRepeat(nsString& aBackgroundRepeat) { return _to##GetBackgroundRepeat(aBackgroundRepeat); } \
NS_IMETHOD SetBackgroundRepeat(const nsString& aBackgroundRepeat) { return _to##SetBackgroundRepeat(aBackgroundRepeat); } \
NS_IMETHOD GetBorder(nsString& aBorder) { return _to##GetBorder(aBorder); } \
NS_IMETHOD SetBorder(const nsString& aBorder) { return _to##SetBorder(aBorder); } \
NS_IMETHOD GetBorderCollapse(nsString& aBorderCollapse) { return _to##GetBorderCollapse(aBorderCollapse); } \
NS_IMETHOD SetBorderCollapse(const nsString& aBorderCollapse) { return _to##SetBorderCollapse(aBorderCollapse); } \
NS_IMETHOD GetBorderColor(nsString& aBorderColor) { return _to##GetBorderColor(aBorderColor); } \
NS_IMETHOD SetBorderColor(const nsString& aBorderColor) { return _to##SetBorderColor(aBorderColor); } \
NS_IMETHOD GetBorderSpacing(nsString& aBorderSpacing) { return _to##GetBorderSpacing(aBorderSpacing); } \
NS_IMETHOD SetBorderSpacing(const nsString& aBorderSpacing) { return _to##SetBorderSpacing(aBorderSpacing); } \
NS_IMETHOD GetBorderStyle(nsString& aBorderStyle) { return _to##GetBorderStyle(aBorderStyle); } \
NS_IMETHOD SetBorderStyle(const nsString& aBorderStyle) { return _to##SetBorderStyle(aBorderStyle); } \
NS_IMETHOD GetBorderTop(nsString& aBorderTop) { return _to##GetBorderTop(aBorderTop); } \
NS_IMETHOD SetBorderTop(const nsString& aBorderTop) { return _to##SetBorderTop(aBorderTop); } \
NS_IMETHOD GetBorderRight(nsString& aBorderRight) { return _to##GetBorderRight(aBorderRight); } \
NS_IMETHOD SetBorderRight(const nsString& aBorderRight) { return _to##SetBorderRight(aBorderRight); } \
NS_IMETHOD GetBorderBottom(nsString& aBorderBottom) { return _to##GetBorderBottom(aBorderBottom); } \
NS_IMETHOD SetBorderBottom(const nsString& aBorderBottom) { return _to##SetBorderBottom(aBorderBottom); } \
NS_IMETHOD GetBorderLeft(nsString& aBorderLeft) { return _to##GetBorderLeft(aBorderLeft); } \
NS_IMETHOD SetBorderLeft(const nsString& aBorderLeft) { return _to##SetBorderLeft(aBorderLeft); } \
NS_IMETHOD GetBorderTopColor(nsString& aBorderTopColor) { return _to##GetBorderTopColor(aBorderTopColor); } \
NS_IMETHOD SetBorderTopColor(const nsString& aBorderTopColor) { return _to##SetBorderTopColor(aBorderTopColor); } \
NS_IMETHOD GetBorderRightColor(nsString& aBorderRightColor) { return _to##GetBorderRightColor(aBorderRightColor); } \
NS_IMETHOD SetBorderRightColor(const nsString& aBorderRightColor) { return _to##SetBorderRightColor(aBorderRightColor); } \
NS_IMETHOD GetBorderBottomColor(nsString& aBorderBottomColor) { return _to##GetBorderBottomColor(aBorderBottomColor); } \
NS_IMETHOD SetBorderBottomColor(const nsString& aBorderBottomColor) { return _to##SetBorderBottomColor(aBorderBottomColor); } \
NS_IMETHOD GetBorderLeftColor(nsString& aBorderLeftColor) { return _to##GetBorderLeftColor(aBorderLeftColor); } \
NS_IMETHOD SetBorderLeftColor(const nsString& aBorderLeftColor) { return _to##SetBorderLeftColor(aBorderLeftColor); } \
NS_IMETHOD GetBorderTopStyle(nsString& aBorderTopStyle) { return _to##GetBorderTopStyle(aBorderTopStyle); } \
NS_IMETHOD SetBorderTopStyle(const nsString& aBorderTopStyle) { return _to##SetBorderTopStyle(aBorderTopStyle); } \
NS_IMETHOD GetBorderRightStyle(nsString& aBorderRightStyle) { return _to##GetBorderRightStyle(aBorderRightStyle); } \
NS_IMETHOD SetBorderRightStyle(const nsString& aBorderRightStyle) { return _to##SetBorderRightStyle(aBorderRightStyle); } \
NS_IMETHOD GetBorderBottomStyle(nsString& aBorderBottomStyle) { return _to##GetBorderBottomStyle(aBorderBottomStyle); } \
NS_IMETHOD SetBorderBottomStyle(const nsString& aBorderBottomStyle) { return _to##SetBorderBottomStyle(aBorderBottomStyle); } \
NS_IMETHOD GetBorderLeftStyle(nsString& aBorderLeftStyle) { return _to##GetBorderLeftStyle(aBorderLeftStyle); } \
NS_IMETHOD SetBorderLeftStyle(const nsString& aBorderLeftStyle) { return _to##SetBorderLeftStyle(aBorderLeftStyle); } \
NS_IMETHOD GetBorderTopWidth(nsString& aBorderTopWidth) { return _to##GetBorderTopWidth(aBorderTopWidth); } \
NS_IMETHOD SetBorderTopWidth(const nsString& aBorderTopWidth) { return _to##SetBorderTopWidth(aBorderTopWidth); } \
NS_IMETHOD GetBorderRightWidth(nsString& aBorderRightWidth) { return _to##GetBorderRightWidth(aBorderRightWidth); } \
NS_IMETHOD SetBorderRightWidth(const nsString& aBorderRightWidth) { return _to##SetBorderRightWidth(aBorderRightWidth); } \
NS_IMETHOD GetBorderBottomWidth(nsString& aBorderBottomWidth) { return _to##GetBorderBottomWidth(aBorderBottomWidth); } \
NS_IMETHOD SetBorderBottomWidth(const nsString& aBorderBottomWidth) { return _to##SetBorderBottomWidth(aBorderBottomWidth); } \
NS_IMETHOD GetBorderLeftWidth(nsString& aBorderLeftWidth) { return _to##GetBorderLeftWidth(aBorderLeftWidth); } \
NS_IMETHOD SetBorderLeftWidth(const nsString& aBorderLeftWidth) { return _to##SetBorderLeftWidth(aBorderLeftWidth); } \
NS_IMETHOD GetBorderWidth(nsString& aBorderWidth) { return _to##GetBorderWidth(aBorderWidth); } \
NS_IMETHOD SetBorderWidth(const nsString& aBorderWidth) { return _to##SetBorderWidth(aBorderWidth); } \
NS_IMETHOD GetBottom(nsString& aBottom) { return _to##GetBottom(aBottom); } \
NS_IMETHOD SetBottom(const nsString& aBottom) { return _to##SetBottom(aBottom); } \
NS_IMETHOD GetCaptionSide(nsString& aCaptionSide) { return _to##GetCaptionSide(aCaptionSide); } \
NS_IMETHOD SetCaptionSide(const nsString& aCaptionSide) { return _to##SetCaptionSide(aCaptionSide); } \
NS_IMETHOD GetClear(nsString& aClear) { return _to##GetClear(aClear); } \
NS_IMETHOD SetClear(const nsString& aClear) { return _to##SetClear(aClear); } \
NS_IMETHOD GetClip(nsString& aClip) { return _to##GetClip(aClip); } \
NS_IMETHOD SetClip(const nsString& aClip) { return _to##SetClip(aClip); } \
NS_IMETHOD GetColor(nsString& aColor) { return _to##GetColor(aColor); } \
NS_IMETHOD SetColor(const nsString& aColor) { return _to##SetColor(aColor); } \
NS_IMETHOD GetContent(nsString& aContent) { return _to##GetContent(aContent); } \
NS_IMETHOD SetContent(const nsString& aContent) { return _to##SetContent(aContent); } \
NS_IMETHOD GetCounterIncrement(nsString& aCounterIncrement) { return _to##GetCounterIncrement(aCounterIncrement); } \
NS_IMETHOD SetCounterIncrement(const nsString& aCounterIncrement) { return _to##SetCounterIncrement(aCounterIncrement); } \
NS_IMETHOD GetCounterReset(nsString& aCounterReset) { return _to##GetCounterReset(aCounterReset); } \
NS_IMETHOD SetCounterReset(const nsString& aCounterReset) { return _to##SetCounterReset(aCounterReset); } \
NS_IMETHOD GetCue(nsString& aCue) { return _to##GetCue(aCue); } \
NS_IMETHOD SetCue(const nsString& aCue) { return _to##SetCue(aCue); } \
NS_IMETHOD GetCueAfter(nsString& aCueAfter) { return _to##GetCueAfter(aCueAfter); } \
NS_IMETHOD SetCueAfter(const nsString& aCueAfter) { return _to##SetCueAfter(aCueAfter); } \
NS_IMETHOD GetCueBefore(nsString& aCueBefore) { return _to##GetCueBefore(aCueBefore); } \
NS_IMETHOD SetCueBefore(const nsString& aCueBefore) { return _to##SetCueBefore(aCueBefore); } \
NS_IMETHOD GetCursor(nsString& aCursor) { return _to##GetCursor(aCursor); } \
NS_IMETHOD SetCursor(const nsString& aCursor) { return _to##SetCursor(aCursor); } \
NS_IMETHOD GetDirection(nsString& aDirection) { return _to##GetDirection(aDirection); } \
NS_IMETHOD SetDirection(const nsString& aDirection) { return _to##SetDirection(aDirection); } \
NS_IMETHOD GetDisplay(nsString& aDisplay) { return _to##GetDisplay(aDisplay); } \
NS_IMETHOD SetDisplay(const nsString& aDisplay) { return _to##SetDisplay(aDisplay); } \
NS_IMETHOD GetElevation(nsString& aElevation) { return _to##GetElevation(aElevation); } \
NS_IMETHOD SetElevation(const nsString& aElevation) { return _to##SetElevation(aElevation); } \
NS_IMETHOD GetEmptyCells(nsString& aEmptyCells) { return _to##GetEmptyCells(aEmptyCells); } \
NS_IMETHOD SetEmptyCells(const nsString& aEmptyCells) { return _to##SetEmptyCells(aEmptyCells); } \
NS_IMETHOD GetStyleFloat(nsString& aStyleFloat) { return _to##GetStyleFloat(aStyleFloat); } \
NS_IMETHOD SetStyleFloat(const nsString& aStyleFloat) { return _to##SetStyleFloat(aStyleFloat); } \
NS_IMETHOD GetFont(nsString& aFont) { return _to##GetFont(aFont); } \
NS_IMETHOD SetFont(const nsString& aFont) { return _to##SetFont(aFont); } \
NS_IMETHOD GetFontFamily(nsString& aFontFamily) { return _to##GetFontFamily(aFontFamily); } \
NS_IMETHOD SetFontFamily(const nsString& aFontFamily) { return _to##SetFontFamily(aFontFamily); } \
NS_IMETHOD GetFontSize(nsString& aFontSize) { return _to##GetFontSize(aFontSize); } \
NS_IMETHOD SetFontSize(const nsString& aFontSize) { return _to##SetFontSize(aFontSize); } \
NS_IMETHOD GetFontSizeAdjust(nsString& aFontSizeAdjust) { return _to##GetFontSizeAdjust(aFontSizeAdjust); } \
NS_IMETHOD SetFontSizeAdjust(const nsString& aFontSizeAdjust) { return _to##SetFontSizeAdjust(aFontSizeAdjust); } \
NS_IMETHOD GetFontStretch(nsString& aFontStretch) { return _to##GetFontStretch(aFontStretch); } \
NS_IMETHOD SetFontStretch(const nsString& aFontStretch) { return _to##SetFontStretch(aFontStretch); } \
NS_IMETHOD GetFontStyle(nsString& aFontStyle) { return _to##GetFontStyle(aFontStyle); } \
NS_IMETHOD SetFontStyle(const nsString& aFontStyle) { return _to##SetFontStyle(aFontStyle); } \
NS_IMETHOD GetFontVariant(nsString& aFontVariant) { return _to##GetFontVariant(aFontVariant); } \
NS_IMETHOD SetFontVariant(const nsString& aFontVariant) { return _to##SetFontVariant(aFontVariant); } \
NS_IMETHOD GetFontWeight(nsString& aFontWeight) { return _to##GetFontWeight(aFontWeight); } \
NS_IMETHOD SetFontWeight(const nsString& aFontWeight) { return _to##SetFontWeight(aFontWeight); } \
NS_IMETHOD GetHeight(nsString& aHeight) { return _to##GetHeight(aHeight); } \
NS_IMETHOD SetHeight(const nsString& aHeight) { return _to##SetHeight(aHeight); } \
NS_IMETHOD GetLeft(nsString& aLeft) { return _to##GetLeft(aLeft); } \
NS_IMETHOD SetLeft(const nsString& aLeft) { return _to##SetLeft(aLeft); } \
NS_IMETHOD GetLetterSpacing(nsString& aLetterSpacing) { return _to##GetLetterSpacing(aLetterSpacing); } \
NS_IMETHOD SetLetterSpacing(const nsString& aLetterSpacing) { return _to##SetLetterSpacing(aLetterSpacing); } \
NS_IMETHOD GetLineHeight(nsString& aLineHeight) { return _to##GetLineHeight(aLineHeight); } \
NS_IMETHOD SetLineHeight(const nsString& aLineHeight) { return _to##SetLineHeight(aLineHeight); } \
NS_IMETHOD GetListStyle(nsString& aListStyle) { return _to##GetListStyle(aListStyle); } \
NS_IMETHOD SetListStyle(const nsString& aListStyle) { return _to##SetListStyle(aListStyle); } \
NS_IMETHOD GetListStyleImage(nsString& aListStyleImage) { return _to##GetListStyleImage(aListStyleImage); } \
NS_IMETHOD SetListStyleImage(const nsString& aListStyleImage) { return _to##SetListStyleImage(aListStyleImage); } \
NS_IMETHOD GetListStylePosition(nsString& aListStylePosition) { return _to##GetListStylePosition(aListStylePosition); } \
NS_IMETHOD SetListStylePosition(const nsString& aListStylePosition) { return _to##SetListStylePosition(aListStylePosition); } \
NS_IMETHOD GetListStyleType(nsString& aListStyleType) { return _to##GetListStyleType(aListStyleType); } \
NS_IMETHOD SetListStyleType(const nsString& aListStyleType) { return _to##SetListStyleType(aListStyleType); } \
NS_IMETHOD GetMargin(nsString& aMargin) { return _to##GetMargin(aMargin); } \
NS_IMETHOD SetMargin(const nsString& aMargin) { return _to##SetMargin(aMargin); } \
NS_IMETHOD GetMarginTop(nsString& aMarginTop) { return _to##GetMarginTop(aMarginTop); } \
NS_IMETHOD SetMarginTop(const nsString& aMarginTop) { return _to##SetMarginTop(aMarginTop); } \
NS_IMETHOD GetMarginRight(nsString& aMarginRight) { return _to##GetMarginRight(aMarginRight); } \
NS_IMETHOD SetMarginRight(const nsString& aMarginRight) { return _to##SetMarginRight(aMarginRight); } \
NS_IMETHOD GetMarginBottom(nsString& aMarginBottom) { return _to##GetMarginBottom(aMarginBottom); } \
NS_IMETHOD SetMarginBottom(const nsString& aMarginBottom) { return _to##SetMarginBottom(aMarginBottom); } \
NS_IMETHOD GetMarginLeft(nsString& aMarginLeft) { return _to##GetMarginLeft(aMarginLeft); } \
NS_IMETHOD SetMarginLeft(const nsString& aMarginLeft) { return _to##SetMarginLeft(aMarginLeft); } \
NS_IMETHOD GetMarkerOffset(nsString& aMarkerOffset) { return _to##GetMarkerOffset(aMarkerOffset); } \
NS_IMETHOD SetMarkerOffset(const nsString& aMarkerOffset) { return _to##SetMarkerOffset(aMarkerOffset); } \
NS_IMETHOD GetMarks(nsString& aMarks) { return _to##GetMarks(aMarks); } \
NS_IMETHOD SetMarks(const nsString& aMarks) { return _to##SetMarks(aMarks); } \
NS_IMETHOD GetMaxHeight(nsString& aMaxHeight) { return _to##GetMaxHeight(aMaxHeight); } \
NS_IMETHOD SetMaxHeight(const nsString& aMaxHeight) { return _to##SetMaxHeight(aMaxHeight); } \
NS_IMETHOD GetMaxWidth(nsString& aMaxWidth) { return _to##GetMaxWidth(aMaxWidth); } \
NS_IMETHOD SetMaxWidth(const nsString& aMaxWidth) { return _to##SetMaxWidth(aMaxWidth); } \
NS_IMETHOD GetMinHeight(nsString& aMinHeight) { return _to##GetMinHeight(aMinHeight); } \
NS_IMETHOD SetMinHeight(const nsString& aMinHeight) { return _to##SetMinHeight(aMinHeight); } \
NS_IMETHOD GetMinWidth(nsString& aMinWidth) { return _to##GetMinWidth(aMinWidth); } \
NS_IMETHOD SetMinWidth(const nsString& aMinWidth) { return _to##SetMinWidth(aMinWidth); } \
NS_IMETHOD GetOrphans(nsString& aOrphans) { return _to##GetOrphans(aOrphans); } \
NS_IMETHOD SetOrphans(const nsString& aOrphans) { return _to##SetOrphans(aOrphans); } \
NS_IMETHOD GetOutline(nsString& aOutline) { return _to##GetOutline(aOutline); } \
NS_IMETHOD SetOutline(const nsString& aOutline) { return _to##SetOutline(aOutline); } \
NS_IMETHOD GetOutlineColor(nsString& aOutlineColor) { return _to##GetOutlineColor(aOutlineColor); } \
NS_IMETHOD SetOutlineColor(const nsString& aOutlineColor) { return _to##SetOutlineColor(aOutlineColor); } \
NS_IMETHOD GetOutlineStyle(nsString& aOutlineStyle) { return _to##GetOutlineStyle(aOutlineStyle); } \
NS_IMETHOD SetOutlineStyle(const nsString& aOutlineStyle) { return _to##SetOutlineStyle(aOutlineStyle); } \
NS_IMETHOD GetOutlineWidth(nsString& aOutlineWidth) { return _to##GetOutlineWidth(aOutlineWidth); } \
NS_IMETHOD SetOutlineWidth(const nsString& aOutlineWidth) { return _to##SetOutlineWidth(aOutlineWidth); } \
NS_IMETHOD GetOverflow(nsString& aOverflow) { return _to##GetOverflow(aOverflow); } \
NS_IMETHOD SetOverflow(const nsString& aOverflow) { return _to##SetOverflow(aOverflow); } \
NS_IMETHOD GetPadding(nsString& aPadding) { return _to##GetPadding(aPadding); } \
NS_IMETHOD SetPadding(const nsString& aPadding) { return _to##SetPadding(aPadding); } \
NS_IMETHOD GetPaddingTop(nsString& aPaddingTop) { return _to##GetPaddingTop(aPaddingTop); } \
NS_IMETHOD SetPaddingTop(const nsString& aPaddingTop) { return _to##SetPaddingTop(aPaddingTop); } \
NS_IMETHOD GetPaddingRight(nsString& aPaddingRight) { return _to##GetPaddingRight(aPaddingRight); } \
NS_IMETHOD SetPaddingRight(const nsString& aPaddingRight) { return _to##SetPaddingRight(aPaddingRight); } \
NS_IMETHOD GetPaddingBottom(nsString& aPaddingBottom) { return _to##GetPaddingBottom(aPaddingBottom); } \
NS_IMETHOD SetPaddingBottom(const nsString& aPaddingBottom) { return _to##SetPaddingBottom(aPaddingBottom); } \
NS_IMETHOD GetPaddingLeft(nsString& aPaddingLeft) { return _to##GetPaddingLeft(aPaddingLeft); } \
NS_IMETHOD SetPaddingLeft(const nsString& aPaddingLeft) { return _to##SetPaddingLeft(aPaddingLeft); } \
NS_IMETHOD GetPage(nsString& aPage) { return _to##GetPage(aPage); } \
NS_IMETHOD SetPage(const nsString& aPage) { return _to##SetPage(aPage); } \
NS_IMETHOD GetPageBreakAfter(nsString& aPageBreakAfter) { return _to##GetPageBreakAfter(aPageBreakAfter); } \
NS_IMETHOD SetPageBreakAfter(const nsString& aPageBreakAfter) { return _to##SetPageBreakAfter(aPageBreakAfter); } \
NS_IMETHOD GetPageBreakBefore(nsString& aPageBreakBefore) { return _to##GetPageBreakBefore(aPageBreakBefore); } \
NS_IMETHOD SetPageBreakBefore(const nsString& aPageBreakBefore) { return _to##SetPageBreakBefore(aPageBreakBefore); } \
NS_IMETHOD GetPageBreakInside(nsString& aPageBreakInside) { return _to##GetPageBreakInside(aPageBreakInside); } \
NS_IMETHOD SetPageBreakInside(const nsString& aPageBreakInside) { return _to##SetPageBreakInside(aPageBreakInside); } \
NS_IMETHOD GetPause(nsString& aPause) { return _to##GetPause(aPause); } \
NS_IMETHOD SetPause(const nsString& aPause) { return _to##SetPause(aPause); } \
NS_IMETHOD GetPauseAfter(nsString& aPauseAfter) { return _to##GetPauseAfter(aPauseAfter); } \
NS_IMETHOD SetPauseAfter(const nsString& aPauseAfter) { return _to##SetPauseAfter(aPauseAfter); } \
NS_IMETHOD GetPauseBefore(nsString& aPauseBefore) { return _to##GetPauseBefore(aPauseBefore); } \
NS_IMETHOD SetPauseBefore(const nsString& aPauseBefore) { return _to##SetPauseBefore(aPauseBefore); } \
NS_IMETHOD GetPitch(nsString& aPitch) { return _to##GetPitch(aPitch); } \
NS_IMETHOD SetPitch(const nsString& aPitch) { return _to##SetPitch(aPitch); } \
NS_IMETHOD GetPitchRange(nsString& aPitchRange) { return _to##GetPitchRange(aPitchRange); } \
NS_IMETHOD SetPitchRange(const nsString& aPitchRange) { return _to##SetPitchRange(aPitchRange); } \
NS_IMETHOD GetPlayDuring(nsString& aPlayDuring) { return _to##GetPlayDuring(aPlayDuring); } \
NS_IMETHOD SetPlayDuring(const nsString& aPlayDuring) { return _to##SetPlayDuring(aPlayDuring); } \
NS_IMETHOD GetPosition(nsString& aPosition) { return _to##GetPosition(aPosition); } \
NS_IMETHOD SetPosition(const nsString& aPosition) { return _to##SetPosition(aPosition); } \
NS_IMETHOD GetQuotes(nsString& aQuotes) { return _to##GetQuotes(aQuotes); } \
NS_IMETHOD SetQuotes(const nsString& aQuotes) { return _to##SetQuotes(aQuotes); } \
NS_IMETHOD GetRichness(nsString& aRichness) { return _to##GetRichness(aRichness); } \
NS_IMETHOD SetRichness(const nsString& aRichness) { return _to##SetRichness(aRichness); } \
NS_IMETHOD GetRight(nsString& aRight) { return _to##GetRight(aRight); } \
NS_IMETHOD SetRight(const nsString& aRight) { return _to##SetRight(aRight); } \
NS_IMETHOD GetSize(nsString& aSize) { return _to##GetSize(aSize); } \
NS_IMETHOD SetSize(const nsString& aSize) { return _to##SetSize(aSize); } \
NS_IMETHOD GetSpeak(nsString& aSpeak) { return _to##GetSpeak(aSpeak); } \
NS_IMETHOD SetSpeak(const nsString& aSpeak) { return _to##SetSpeak(aSpeak); } \
NS_IMETHOD GetSpeakHeader(nsString& aSpeakHeader) { return _to##GetSpeakHeader(aSpeakHeader); } \
NS_IMETHOD SetSpeakHeader(const nsString& aSpeakHeader) { return _to##SetSpeakHeader(aSpeakHeader); } \
NS_IMETHOD GetSpeakNumeral(nsString& aSpeakNumeral) { return _to##GetSpeakNumeral(aSpeakNumeral); } \
NS_IMETHOD SetSpeakNumeral(const nsString& aSpeakNumeral) { return _to##SetSpeakNumeral(aSpeakNumeral); } \
NS_IMETHOD GetSpeakPunctuation(nsString& aSpeakPunctuation) { return _to##GetSpeakPunctuation(aSpeakPunctuation); } \
NS_IMETHOD SetSpeakPunctuation(const nsString& aSpeakPunctuation) { return _to##SetSpeakPunctuation(aSpeakPunctuation); } \
NS_IMETHOD GetSpeechRate(nsString& aSpeechRate) { return _to##GetSpeechRate(aSpeechRate); } \
NS_IMETHOD SetSpeechRate(const nsString& aSpeechRate) { return _to##SetSpeechRate(aSpeechRate); } \
NS_IMETHOD GetStress(nsString& aStress) { return _to##GetStress(aStress); } \
NS_IMETHOD SetStress(const nsString& aStress) { return _to##SetStress(aStress); } \
NS_IMETHOD GetTableLayout(nsString& aTableLayout) { return _to##GetTableLayout(aTableLayout); } \
NS_IMETHOD SetTableLayout(const nsString& aTableLayout) { return _to##SetTableLayout(aTableLayout); } \
NS_IMETHOD GetTextAlign(nsString& aTextAlign) { return _to##GetTextAlign(aTextAlign); } \
NS_IMETHOD SetTextAlign(const nsString& aTextAlign) { return _to##SetTextAlign(aTextAlign); } \
NS_IMETHOD GetTextDecoration(nsString& aTextDecoration) { return _to##GetTextDecoration(aTextDecoration); } \
NS_IMETHOD SetTextDecoration(const nsString& aTextDecoration) { return _to##SetTextDecoration(aTextDecoration); } \
NS_IMETHOD GetTextIndent(nsString& aTextIndent) { return _to##GetTextIndent(aTextIndent); } \
NS_IMETHOD SetTextIndent(const nsString& aTextIndent) { return _to##SetTextIndent(aTextIndent); } \
NS_IMETHOD GetTextShadow(nsString& aTextShadow) { return _to##GetTextShadow(aTextShadow); } \
NS_IMETHOD SetTextShadow(const nsString& aTextShadow) { return _to##SetTextShadow(aTextShadow); } \
NS_IMETHOD GetTextTransform(nsString& aTextTransform) { return _to##GetTextTransform(aTextTransform); } \
NS_IMETHOD SetTextTransform(const nsString& aTextTransform) { return _to##SetTextTransform(aTextTransform); } \
NS_IMETHOD GetTop(nsString& aTop) { return _to##GetTop(aTop); } \
NS_IMETHOD SetTop(const nsString& aTop) { return _to##SetTop(aTop); } \
NS_IMETHOD GetUnicodeBidi(nsString& aUnicodeBidi) { return _to##GetUnicodeBidi(aUnicodeBidi); } \
NS_IMETHOD SetUnicodeBidi(const nsString& aUnicodeBidi) { return _to##SetUnicodeBidi(aUnicodeBidi); } \
NS_IMETHOD GetVerticalAlign(nsString& aVerticalAlign) { return _to##GetVerticalAlign(aVerticalAlign); } \
NS_IMETHOD SetVerticalAlign(const nsString& aVerticalAlign) { return _to##SetVerticalAlign(aVerticalAlign); } \
NS_IMETHOD GetVisibility(nsString& aVisibility) { return _to##GetVisibility(aVisibility); } \
NS_IMETHOD SetVisibility(const nsString& aVisibility) { return _to##SetVisibility(aVisibility); } \
NS_IMETHOD GetVoiceFamily(nsString& aVoiceFamily) { return _to##GetVoiceFamily(aVoiceFamily); } \
NS_IMETHOD SetVoiceFamily(const nsString& aVoiceFamily) { return _to##SetVoiceFamily(aVoiceFamily); } \
NS_IMETHOD GetVolume(nsString& aVolume) { return _to##GetVolume(aVolume); } \
NS_IMETHOD SetVolume(const nsString& aVolume) { return _to##SetVolume(aVolume); } \
NS_IMETHOD GetWhiteSpace(nsString& aWhiteSpace) { return _to##GetWhiteSpace(aWhiteSpace); } \
NS_IMETHOD SetWhiteSpace(const nsString& aWhiteSpace) { return _to##SetWhiteSpace(aWhiteSpace); } \
NS_IMETHOD GetWidows(nsString& aWidows) { return _to##GetWidows(aWidows); } \
NS_IMETHOD SetWidows(const nsString& aWidows) { return _to##SetWidows(aWidows); } \
NS_IMETHOD GetWidth(nsString& aWidth) { return _to##GetWidth(aWidth); } \
NS_IMETHOD SetWidth(const nsString& aWidth) { return _to##SetWidth(aWidth); } \
NS_IMETHOD GetWordSpacing(nsString& aWordSpacing) { return _to##GetWordSpacing(aWordSpacing); } \
NS_IMETHOD SetWordSpacing(const nsString& aWordSpacing) { return _to##SetWordSpacing(aWordSpacing); } \
NS_IMETHOD GetZIndex(nsString& aZIndex) { return _to##GetZIndex(aZIndex); } \
NS_IMETHOD SetZIndex(const nsString& aZIndex) { return _to##SetZIndex(aZIndex); } \
NS_IMETHOD GetOpacity(nsString& aOpacity) { return _to##GetOpacity(aOpacity); } \
NS_IMETHOD SetOpacity(const nsString& aOpacity) { return _to##SetOpacity(aOpacity); } \
NS_IMETHOD GetPropertyValue(const nsString& aPropertyName, nsString& aReturn) { return _to##GetPropertyValue(aPropertyName, aReturn); } \
NS_IMETHOD GetPropertyPriority(const nsString& aPropertyName, nsString& aReturn) { return _to##GetPropertyPriority(aPropertyName, aReturn); } \
NS_IMETHOD SetProperty(const nsString& aPropertyName, const nsString& aValue, const nsString& aPriority) { return _to##SetProperty(aPropertyName, aValue, aPriority); } \

View File

@@ -23,26 +23,38 @@
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
#include "nsIDOMCSSRule.h"
class nsIDOMCSSStyleDeclaration;
#define NS_IDOMCSSSTYLERULE_IID \
{ 0xa6cf90bf, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } }
class nsIDOMCSSStyleRule : public nsISupports {
class nsIDOMCSSStyleRule : public nsIDOMCSSRule {
public:
NS_IMETHOD GetType(nsString& aType)=0;
NS_IMETHOD GetSelectorText(nsString& aSelectorText)=0;
NS_IMETHOD SetSelectorText(const nsString& aSelectorText)=0;
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle)=0;
NS_IMETHOD SetStyle(nsIDOMCSSStyleDeclaration* aStyle)=0;
};
#define NS_DECL_IDOMCSSSTYLERULE \
NS_IMETHOD GetType(nsString& aType); \
NS_IMETHOD GetSelectorText(nsString& aSelectorText); \
NS_IMETHOD SetSelectorText(const nsString& aSelectorText); \
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle); \
NS_IMETHOD SetStyle(nsIDOMCSSStyleDeclaration* aStyle); \
#define NS_FORWARD_IDOMCSSSTYLERULE(_to) \
NS_IMETHOD GetType(nsString& aType) { return _to##GetType(aType); } \
NS_IMETHOD GetSelectorText(nsString& aSelectorText) { return _to##GetSelectorText(aSelectorText); } \
NS_IMETHOD SetSelectorText(const nsString& aSelectorText) { return _to##SetSelectorText(aSelectorText); } \
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle) { return _to##GetStyle(aStyle); } \
NS_IMETHOD SetStyle(nsIDOMCSSStyleDeclaration* aStyle) { return _to##SetStyle(aStyle); } \
extern nsresult NS_InitCSSStyleRuleClass(nsIScriptContext *aContext, void **aPrototype);

View File

@@ -1,61 +0,0 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/* AUTO-GENERATED. DO NOT EDIT!!! */
#ifndef nsIDOMCSSStyleRuleSimple_h__
#define nsIDOMCSSStyleRuleSimple_h__
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
#include "nsIDOMCSSStyleRule.h"
class nsIDOMCSSStyleDeclaration;
#define NS_IDOMCSSSTYLERULESIMPLE_IID \
{ 0xa6cf90c1, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } }
class nsIDOMCSSStyleRuleSimple : public nsIDOMCSSStyleRule {
public:
NS_IMETHOD GetSelectorText(nsString& aSelectorText)=0;
NS_IMETHOD SetSelectorText(const nsString& aSelectorText)=0;
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle)=0;
};
#define NS_DECL_IDOMCSSSTYLERULESIMPLE \
NS_IMETHOD GetSelectorText(nsString& aSelectorText); \
NS_IMETHOD SetSelectorText(const nsString& aSelectorText); \
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle); \
#define NS_FORWARD_IDOMCSSSTYLERULESIMPLE(_to) \
NS_IMETHOD GetSelectorText(nsString& aSelectorText) { return _to##GetSelectorText(aSelectorText); } \
NS_IMETHOD SetSelectorText(const nsString& aSelectorText) { return _to##SetSelectorText(aSelectorText); } \
NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration** aStyle) { return _to##GetStyle(aStyle); } \
extern nsresult NS_InitCSSStyleRuleSimpleClass(nsIScriptContext *aContext, void **aPrototype);
extern "C" NS_DOM nsresult NS_NewScriptCSSStyleRuleSimple(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn);
#endif // nsIDOMCSSStyleRuleSimple_h__

View File

@@ -25,10 +25,9 @@
#include "nsIScriptContext.h"
#include "nsIDOMStyleSheet.h"
class nsIDOMHTMLElement;
class nsIDOMStyleSheetCollection;
class nsIDOMNode;
class nsIDOMStyleSheet;
class nsIDOMCSSStyleRuleCollection;
class nsIDOMCSSStyleSheet;
#define NS_IDOMCSSSTYLESHEET_IID \
{ 0xa6cf90c2, 0x15b3, 0x11d2, \
@@ -37,53 +36,45 @@ class nsIDOMCSSStyleSheet;
class nsIDOMCSSStyleSheet : public nsIDOMStyleSheet {
public:
NS_IMETHOD GetOwningElement(nsIDOMHTMLElement** aOwningElement)=0;
NS_IMETHOD GetOwningNode(nsIDOMNode** aOwningNode)=0;
NS_IMETHOD GetParentStyleSheet(nsIDOMCSSStyleSheet** aParentStyleSheet)=0;
NS_IMETHOD GetParentStyleSheet(nsIDOMStyleSheet** aParentStyleSheet)=0;
NS_IMETHOD GetHref(nsString& aHref)=0;
NS_IMETHOD GetTitle(nsString& aTitle)=0;
NS_IMETHOD GetImports(nsIDOMStyleSheetCollection** aImports)=0;
NS_IMETHOD GetMedia(nsString& aMedia)=0;
NS_IMETHOD GetRules(nsIDOMCSSStyleRuleCollection** aRules)=0;
NS_IMETHOD GetCssRules(nsIDOMCSSStyleRuleCollection** aCssRules)=0;
NS_IMETHOD AddRule(const nsString& aSelector, const nsString& aDeclaration, PRUint32 aIndex, PRUint32* aReturn)=0;
NS_IMETHOD InsertRule(const nsString& aRule, PRUint32 aIndex, PRUint32* aReturn)=0;
NS_IMETHOD AddImport(const nsString& aUrl, PRUint32 aIndex, PRUint32* aReturn)=0;
NS_IMETHOD RemoveRule(PRUint32 aIndex)=0;
NS_IMETHOD RemoveImport(PRUint32 aIndex)=0;
NS_IMETHOD DeleteRule(PRUint32 aIndex)=0;
};
#define NS_DECL_IDOMCSSSTYLESHEET \
NS_IMETHOD GetOwningElement(nsIDOMHTMLElement** aOwningElement); \
NS_IMETHOD GetParentStyleSheet(nsIDOMCSSStyleSheet** aParentStyleSheet); \
NS_IMETHOD GetOwningNode(nsIDOMNode** aOwningNode); \
NS_IMETHOD GetParentStyleSheet(nsIDOMStyleSheet** aParentStyleSheet); \
NS_IMETHOD GetHref(nsString& aHref); \
NS_IMETHOD GetTitle(nsString& aTitle); \
NS_IMETHOD GetImports(nsIDOMStyleSheetCollection** aImports); \
NS_IMETHOD GetRules(nsIDOMCSSStyleRuleCollection** aRules); \
NS_IMETHOD AddRule(const nsString& aSelector, const nsString& aDeclaration, PRUint32 aIndex, PRUint32* aReturn); \
NS_IMETHOD AddImport(const nsString& aUrl, PRUint32 aIndex, PRUint32* aReturn); \
NS_IMETHOD RemoveRule(PRUint32 aIndex); \
NS_IMETHOD RemoveImport(PRUint32 aIndex); \
NS_IMETHOD GetMedia(nsString& aMedia); \
NS_IMETHOD GetCssRules(nsIDOMCSSStyleRuleCollection** aCssRules); \
NS_IMETHOD InsertRule(const nsString& aRule, PRUint32 aIndex, PRUint32* aReturn); \
NS_IMETHOD DeleteRule(PRUint32 aIndex); \
#define NS_FORWARD_IDOMCSSSTYLESHEET(_to) \
NS_IMETHOD GetOwningElement(nsIDOMHTMLElement** aOwningElement) { return _to##GetOwningElement(aOwningElement); } \
NS_IMETHOD GetParentStyleSheet(nsIDOMCSSStyleSheet** aParentStyleSheet) { return _to##GetParentStyleSheet(aParentStyleSheet); } \
NS_IMETHOD GetOwningNode(nsIDOMNode** aOwningNode) { return _to##GetOwningNode(aOwningNode); } \
NS_IMETHOD GetParentStyleSheet(nsIDOMStyleSheet** aParentStyleSheet) { return _to##GetParentStyleSheet(aParentStyleSheet); } \
NS_IMETHOD GetHref(nsString& aHref) { return _to##GetHref(aHref); } \
NS_IMETHOD GetTitle(nsString& aTitle) { return _to##GetTitle(aTitle); } \
NS_IMETHOD GetImports(nsIDOMStyleSheetCollection** aImports) { return _to##GetImports(aImports); } \
NS_IMETHOD GetRules(nsIDOMCSSStyleRuleCollection** aRules) { return _to##GetRules(aRules); } \
NS_IMETHOD AddRule(const nsString& aSelector, const nsString& aDeclaration, PRUint32 aIndex, PRUint32* aReturn) { return _to##AddRule(aSelector, aDeclaration, aIndex, aReturn); } \
NS_IMETHOD AddImport(const nsString& aUrl, PRUint32 aIndex, PRUint32* aReturn) { return _to##AddImport(aUrl, aIndex, aReturn); } \
NS_IMETHOD RemoveRule(PRUint32 aIndex) { return _to##RemoveRule(aIndex); } \
NS_IMETHOD RemoveImport(PRUint32 aIndex) { return _to##RemoveImport(aIndex); } \
NS_IMETHOD GetMedia(nsString& aMedia) { return _to##GetMedia(aMedia); } \
NS_IMETHOD GetCssRules(nsIDOMCSSStyleRuleCollection** aCssRules) { return _to##GetCssRules(aCssRules); } \
NS_IMETHOD InsertRule(const nsString& aRule, PRUint32 aIndex, PRUint32* aReturn) { return _to##InsertRule(aRule, aIndex, aReturn); } \
NS_IMETHOD DeleteRule(PRUint32 aIndex) { return _to##DeleteRule(aIndex); } \
extern nsresult NS_InitCSSStyleSheetClass(nsIScriptContext *aContext, void **aPrototype);

View File

@@ -0,0 +1,49 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/* AUTO-GENERATED. DO NOT EDIT!!! */
#ifndef nsIDOMCSSUnknownRule_h__
#define nsIDOMCSSUnknownRule_h__
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
#include "nsIDOMCSSRule.h"
#define NS_IDOMCSSUNKNOWNRULE_IID \
{ 0xa6cf90d0, 0x15b3, 0x11d2, \
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } }
class nsIDOMCSSUnknownRule : public nsIDOMCSSRule {
public:
};
#define NS_DECL_IDOMCSSUNKNOWNRULE \
#define NS_FORWARD_IDOMCSSUNKNOWNRULE(_to) \
extern nsresult NS_InitCSSUnknownRuleClass(nsIScriptContext *aContext, void **aPrototype);
extern "C" NS_DOM nsresult NS_NewScriptCSSUnknownRule(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn);
#endif // nsIDOMCSSUnknownRule_h__

View File

@@ -3,6 +3,7 @@
/* IID: { 0xa6cf9080, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
attribute boolean disabled;
readonly attribute boolean readOnly;
readonly attribute wstring type;
attribute boolean disabled;
readonly attribute boolean readOnly;
};

View File

@@ -0,0 +1,131 @@
interface CSS2Properties : CSSStyleDeclaration {
/* IID: { 0xa6cf90d1, 0x15b3, 0x11d2, \
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
attribute wstring azimuth;
attribute wstring background;
attribute wstring backgroundAttachment;
attribute wstring backgroundColor;
attribute wstring backgroundImage;
attribute wstring backgroundPosition;
attribute wstring backgroundRepeat;
attribute wstring border;
attribute wstring borderCollapse;
attribute wstring borderColor;
attribute wstring borderSpacing;
attribute wstring borderStyle;
attribute wstring borderTop;
attribute wstring borderRight;
attribute wstring borderBottom;
attribute wstring borderLeft;
attribute wstring borderTopColor;
attribute wstring borderRightColor;
attribute wstring borderBottomColor;
attribute wstring borderLeftColor;
attribute wstring borderTopStyle;
attribute wstring borderRightStyle;
attribute wstring borderBottomStyle;
attribute wstring borderLeftStyle;
attribute wstring borderTopWidth;
attribute wstring borderRightWidth;
attribute wstring borderBottomWidth;
attribute wstring borderLeftWidth;
attribute wstring borderWidth;
attribute wstring bottom;
attribute wstring captionSide;
attribute wstring clear;
attribute wstring clip;
attribute wstring color;
attribute wstring content;
attribute wstring counterIncrement;
attribute wstring counterReset;
attribute wstring cue;
attribute wstring cueAfter;
attribute wstring cueBefore;
attribute wstring cursor;
attribute wstring direction;
attribute wstring display;
attribute wstring elevation;
attribute wstring emptyCells;
attribute wstring cssFloat;
attribute wstring font;
attribute wstring fontFamily;
attribute wstring fontSize;
attribute wstring fontSizeAdjust;
attribute wstring fontStretch;
attribute wstring fontStyle;
attribute wstring fontVariant;
attribute wstring fontWeight;
attribute wstring height;
attribute wstring left;
attribute wstring letterSpacing;
attribute wstring lineHeight;
attribute wstring listStyle;
attribute wstring listStyleImage;
attribute wstring listStylePosition;
attribute wstring listStyleType;
attribute wstring margin;
attribute wstring marginTop;
attribute wstring marginRight;
attribute wstring marginBottom;
attribute wstring marginLeft;
attribute wstring markerOffset;
attribute wstring marks;
attribute wstring maxHeight;
attribute wstring maxWidth;
attribute wstring minHeight;
attribute wstring minWidth;
attribute wstring orphans;
attribute wstring outline;
attribute wstring outlineColor;
attribute wstring outlineStyle;
attribute wstring outlineWidth;
attribute wstring overflow;
attribute wstring padding;
attribute wstring paddingTop;
attribute wstring paddingRight;
attribute wstring paddingBottom;
attribute wstring paddingLeft;
attribute wstring page;
attribute wstring pageBreakAfter;
attribute wstring pageBreakBefore;
attribute wstring pageBreakInside;
attribute wstring pause;
attribute wstring pauseAfter;
attribute wstring pauseBefore;
attribute wstring pitch;
attribute wstring pitchRange;
attribute wstring playDuring;
attribute wstring position;
attribute wstring quotes;
attribute wstring richness;
attribute wstring right;
attribute wstring size;
attribute wstring speak;
attribute wstring speakHeader;
attribute wstring speakNumeral;
attribute wstring speakPunctuation;
attribute wstring speechRate;
attribute wstring stress;
attribute wstring tableLayout;
attribute wstring textAlign;
attribute wstring textDecoration;
attribute wstring textIndent;
attribute wstring textShadow;
attribute wstring textTransform;
attribute wstring top;
attribute wstring unicodeBidi;
attribute wstring verticalAlign;
attribute wstring visibility;
attribute wstring voiceFamily;
attribute wstring volume;
attribute wstring whiteSpace;
attribute wstring widows;
attribute wstring width;
attribute wstring wordSpacing;
attribute wstring zIndex;
/* XXX Kipp was here */
attribute wstring opacity;
};

View File

@@ -1,5 +1,5 @@
interface CSSFontFaceRule : CSSStyleRule {
interface CSSFontFaceRule : CSSRule {
/* IID: { 0xa6cf90bb, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */

View File

@@ -0,0 +1,9 @@
interface CSSImportRule : CSSRule {
/* IID: { 0xa6cf90cf, 0x15b3, 0x11d2, \
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} } */
attribute wstring href;
attribute wstring media;
readonly attribute CSSStyleSheet styleSheet;
};

View File

@@ -1,11 +1,11 @@
interface CSSMediaRule : CSSStyleRule {
interface CSSMediaRule : CSSRule {
/* IID: { 0xa6cf90bc, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
attribute wstring mediaTypes;
readonly attribute CSSStyleRuleCollection rules;
attribute wstring mediaTypes;
readonly attribute CSSStyleRuleCollection cssRules;
unsigned long addRule(in wstring selector, in wstring declaration, in unsigned long index);
void removeRule(in unsigned long index);
unsigned long insertRule(in wstring rule, in unsigned long index);
void deleteRule(in unsigned long index);
};

View File

@@ -1,8 +1,8 @@
interface CSSPageRule : CSSStyleRule {
interface CSSPageRule : CSSRule {
/* IID: { 0xa6cf90bd, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
attribute wstring selectorText;
attribute CSSStyleDeclaration style;
attribute wstring name;
attribute CSSStyleDeclaration style;
};

View File

@@ -0,0 +1,17 @@
interface CSSRule {
/* IID: { 0xa6cf90c1, 0x15b3, 0x11d2, \
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} } */
const unsigned short UNKNOWN_RULE = 0;
const unsigned short STYLE_RULE = 1;
const unsigned short IMPORT_RULE = 2;
const unsigned short MEDIA_RULE = 3;
const unsigned short FONT_FACE_RULE = 4;
const unsigned short PAGE_RULE = 5;
readonly attribute unsigned short type;
attribute wstring cssText;
readonly attribute CSSStyleSheet sheet;
};

View File

@@ -3,137 +3,14 @@
/* IID: { 0xa6cf90be, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
wstring getPropertyValue(in wstring propertyName);
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 cssText;
attribute wstring azimuth;
attribute wstring background;
attribute wstring backgroundAttachment;
attribute wstring backgroundColor;
attribute wstring backgroundImage;
attribute wstring backgroundPosition;
attribute wstring backgroundRepeat;
attribute wstring border;
attribute wstring borderCollapse;
attribute wstring borderColor;
attribute wstring borderSpacing;
attribute wstring borderStyle;
attribute wstring borderTop;
attribute wstring borderRight;
attribute wstring borderBottom;
attribute wstring borderLeft;
attribute wstring borderTopColor;
attribute wstring borderRightColor;
attribute wstring borderBottomColor;
attribute wstring borderLeftColor;
attribute wstring borderTopStyle;
attribute wstring borderRightStyle;
attribute wstring borderBottomStyle;
attribute wstring borderLeftStyle;
attribute wstring borderTopWidth;
attribute wstring borderRightWidth;
attribute wstring borderBottomWidth;
attribute wstring borderLeftWidth;
attribute wstring borderWidth;
attribute wstring bottom;
attribute wstring captionSide;
attribute wstring clear;
attribute wstring clip;
attribute wstring color;
attribute wstring content;
attribute wstring counterIncrement;
attribute wstring counterReset;
attribute wstring cue;
attribute wstring cueAfter;
attribute wstring cueBefore;
attribute wstring cursor;
attribute wstring direction;
attribute wstring display;
attribute wstring elevation;
attribute wstring emptyCells;
attribute wstring styleFloat;
attribute wstring font;
attribute wstring fontFamily;
attribute wstring fontSize;
attribute wstring fontSizeAdjust;
attribute wstring fontStretch;
attribute wstring fontStyle;
attribute wstring fontVariant;
attribute wstring fontWeight;
attribute wstring height;
attribute wstring left;
attribute wstring letterSpacing;
attribute wstring lineHeight;
attribute wstring listStyle;
attribute wstring listStyleImage;
attribute wstring listStylePosition;
attribute wstring listStyleType;
attribute wstring margin;
attribute wstring marginTop;
attribute wstring marginRight;
attribute wstring marginBottom;
attribute wstring marginLeft;
attribute wstring markerOffset;
attribute wstring marks;
attribute wstring maxHeight;
attribute wstring maxWidth;
attribute wstring minHeight;
attribute wstring minWidth;
attribute wstring orphans;
attribute wstring outline;
attribute wstring outlineColor;
attribute wstring outlineStyle;
attribute wstring outlineWidth;
attribute wstring overflow;
attribute wstring padding;
attribute wstring paddingTop;
attribute wstring paddingRight;
attribute wstring paddingBottom;
attribute wstring paddingLeft;
attribute wstring page;
attribute wstring pageBreakAfter;
attribute wstring pageBreakBefore;
attribute wstring pageBreakInside;
attribute wstring pause;
attribute wstring pauseAfter;
attribute wstring pauseBefore;
attribute wstring pitch;
attribute wstring pitchRange;
attribute wstring playDuring;
attribute wstring position;
attribute wstring quotes;
attribute wstring richness;
attribute wstring right;
attribute wstring size;
attribute wstring speak;
attribute wstring speakHeader;
attribute wstring speakNumeral;
attribute wstring speakPunctuation;
attribute wstring speechRate;
attribute wstring stress;
attribute wstring tableLayout;
attribute wstring textAlign;
attribute wstring textDecoration;
attribute wstring textIndent;
attribute wstring textShadow;
attribute wstring textTransform;
attribute wstring top;
attribute wstring unicodeBidi;
attribute wstring verticalAlign;
attribute wstring visibility;
attribute wstring voiceFamily;
attribute wstring volume;
attribute wstring whiteSpace;
attribute wstring widows;
attribute wstring width;
attribute wstring wordSpacing;
attribute wstring zIndex;
/* XXX: kipp was here */
attribute wstring opacity;
wstring getPropertyValue(in wstring propertyName);
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 */
};

View File

@@ -1,7 +1,8 @@
interface CSSStyleRule {
interface CSSStyleRule : CSSRule {
/* IID: { 0xa6cf90bf, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
readonly attribute wstring type;
attribute wstring selectorText;
attribute CSSStyleDeclaration style;
};

View File

@@ -1,8 +0,0 @@
interface CSSStyleRuleSimple : CSSStyleRule {
/* IID: { 0xa6cf90c1, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
attribute wstring selectorText;
readonly attribute CSSStyleDeclaration style;
};

View File

@@ -3,17 +3,15 @@
/* IID: { 0xa6cf90c2, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
readonly attribute HTMLElement owningElement;
readonly attribute CSSStyleSheet parentStyleSheet;
readonly attribute wstring href;
readonly attribute wstring title;
readonly attribute Node owningNode;
readonly attribute StyleSheet parentStyleSheet;
readonly attribute wstring href;
readonly attribute wstring title;
readonly attribute wstring media;
readonly attribute StyleSheetCollection imports;
readonly attribute CSSStyleRuleCollection rules;
readonly attribute CSSStyleRuleCollection cssRules;
unsigned long addRule(in wstring selector, in wstring declaration, in unsigned long index);
unsigned long addImport(in wstring url, in unsigned long index);
void removeRule(in unsigned long index);
void removeImport(in unsigned long index);
unsigned long insertRule(in wstring rule, in unsigned long index);
void deleteRule(in unsigned long index);
};

View File

@@ -0,0 +1,6 @@
interface CSSUnknownRule : CSSRule {
/* IID: { 0xa6cf90d0, 0x15b3, 0x11d2, \
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
};

View File

@@ -21,14 +21,17 @@ IGNORE_MANIFEST=1
MODULE=raptor
IDLSRCS = \
CSS2Properties.idl \
CSSFontFaceRule.idl \
CSSImportRule.idl \
CSSMediaRule.idl \
CSSPageRule.idl \
CSSRule.idl \
CSSStyleDeclaration.idl \
CSSStyleRule.idl \
CSSStyleRuleCollection.idl \
CSSStyleRuleSimple.idl \
CSSStyleSheet.idl
CSSStyleSheet.idl \
CSSUnknownRule.idl
XPCOM_DESTDIR=$(DEPTH)\dom\public\css
JSSTUB_DESTDIR=$(DEPTH)\dom\src\css

View File

@@ -101,9 +101,9 @@
#include "nsIDOMNavigator.h"
#include "nsIDOMLocation.h"
#include "nsIDOMStyleSheetCollection.h"
#include "nsIDOMCSSStyleDeclaration.h"
#include "nsIDOMCSS2Properties.h"
#include "nsIDOMCSSStyleSheet.h"
#include "nsIDOMCSSStyleRuleSimple.h"
#include "nsIDOMCSSStyleRule.h"
#include "nsIDOMCSSStyleRuleCollection.h"
#include "plhash.h"
@@ -687,10 +687,10 @@ void XXXDomNeverCalled()
NS_NewScriptNavigator(0, 0, 0, 0);
NS_NewScriptLocation(0, 0, 0, 0);
NS_NewScriptEventListener(0, 0, 0);
NS_NewScriptCSSStyleDeclaration(0, 0, 0, 0);
NS_NewScriptCSS2Properties(0, 0, 0, 0);
NS_NewScriptCSSStyleSheet(0, 0, 0, 0);
NS_NewScriptCSSStyleRuleSimple(0, 0, 0, 0);
NS_NewScriptStyleSheetCollection(0, 0, 0, 0);
NS_NewScriptCSSStyleRule(0, 0, 0, 0);
NS_NewScriptCSSStyleRuleCollection(0, 0, 0, 0);
NET_InitJavaScriptProtocol();
}

View File

@@ -662,8 +662,8 @@ static JSPropertySpec ElementProperties[] =
//
static JSFunctionSpec ElementMethods[] =
{
{"getAttribute", ElementGetDOMAttribute, 1},
{"setAttribute", ElementSetDOMAttribute, 2},
{"getDOMAttribute", ElementGetDOMAttribute, 1},
{"setDOMAttribute", ElementSetDOMAttribute, 2},
{"removeAttribute", ElementRemoveAttribute, 1},
{"getAttributeNode", ElementGetAttributeNode, 1},
{"setAttributeNode", ElementSetAttributeNode, 1},

View File

@@ -39,8 +39,9 @@ NS_DEF_PTR(nsIDOMStyleSheet);
// StyleSheet property ids
//
enum StyleSheet_slots {
STYLESHEET_DISABLED = -1,
STYLESHEET_READONLY = -2
STYLESHEET_TYPE = -1,
STYLESHEET_DISABLED = -2,
STYLESHEET_READONLY = -3
};
/***********************************************************************/
@@ -59,6 +60,19 @@ GetStyleSheetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case STYLESHEET_TYPE:
{
nsAutoString prop;
if (NS_OK == a->GetType(prop)) {
JSString *jsstring = JS_NewUCStringCopyN(cx, prop, prop.Length());
// set the return value
*vp = STRING_TO_JSVAL(jsstring);
}
else {
return JS_FALSE;
}
break;
}
case STYLESHEET_DISABLED:
{
PRBool prop;
@@ -248,6 +262,7 @@ JSClass StyleSheetClass = {
//
static JSPropertySpec StyleSheetProperties[] =
{
{"type", STYLESHEET_TYPE, JSPROP_ENUMERATE | JSPROP_READONLY},
{"disabled", STYLESHEET_DISABLED, JSPROP_ENUMERATE},
{"readOnly", STYLESHEET_READONLY, JSPROP_ENUMERATE | JSPROP_READONLY},
{0}

View File

@@ -25,16 +25,20 @@ include $(DEPTH)/config/autoconf.mk
LIBRARY_NAME = jsdomcss_s
CPPSRCS = \
nsJSCSSFontFaceRule.cpp \
nsJSCSSMediaRule.cpp \
nsJSCSSPageRule.cpp \
nsJSCSSStyleDeclaration.cpp \
nsJSCSSStyleRule.cpp \
nsJSCSSStyleRuleCollection.cpp \
nsJSCSSStyleRuleSimple.cpp \
nsJSCSSStyleSheet.cpp \
nsJSCSS2Properties.cpp \
nsJSCSSFontFaceRule.cpp \
nsJSCSSImportRule.cpp \
nsJSCSSMediaRule.cpp \
nsJSCSSPageRule.cpp \
nsJSCSSRule.cpp \
nsJSCSSStyleDeclaration.cpp \
nsJSCSSStyleRule.cpp \
nsJSCSSStyleRuleCollection.cpp \
nsJSCSSStyleSheet.cpp \
nsJSCSSUnknownRule.cpp \
$(NULL)
DEFINES += -D_IMPL_NS_DOM
MODULE = raptor

View File

@@ -10,27 +10,34 @@ REQUIRES=xpcom raptor js netlib
DEFINES=-D_IMPL_NS_DOM -DWIN32_LEAN_AND_MEAN
CPPSRCS = \
nsJSCSSFontFaceRule.cpp \
nsJSCSSMediaRule.cpp \
nsJSCSSPageRule.cpp \
nsJSCSSStyleDeclaration.cpp \
nsJSCSSStyleRule.cpp \
nsJSCSSStyleRuleCollection.cpp \
nsJSCSSStyleRuleSimple.cpp \
nsJSCSSStyleSheet.cpp \
nsJSCSS2Properties.cpp \
nsJSCSSFontFaceRule.cpp \
nsJSCSSImportRule.cpp \
nsJSCSSMediaRule.cpp \
nsJSCSSPageRule.cpp \
nsJSCSSRule.cpp \
nsJSCSSStyleDeclaration.cpp \
nsJSCSSStyleRule.cpp \
nsJSCSSStyleRuleCollection.cpp \
nsJSCSSStyleSheet.cpp \
nsJSCSSUnknownRule.cpp \
$(NULL)
CPP_OBJS= \
.\$(OBJDIR)\nsJSCSSFontFaceRule.obj \
.\$(OBJDIR)\nsJSCSSMediaRule.obj \
.\$(OBJDIR)\nsJSCSSPageRule.obj \
.\$(OBJDIR)\nsJSCSSStyleDeclaration.obj \
.\$(OBJDIR)\nsJSCSSStyleRule.obj \
.\$(OBJDIR)\nsJSCSSStyleRuleCollection.obj \
.\$(OBJDIR)\nsJSCSSStyleRuleSimple.obj \
.\$(OBJDIR)\nsJSCSSStyleSheet.obj \
.\$(OBJDIR)\nsJSCSS2Properties.obj \
.\$(OBJDIR)\nsJSCSSFontFaceRule.obj \
.\$(OBJDIR)\nsJSCSSImportRule.obj \
.\$(OBJDIR)\nsJSCSSMediaRule.obj \
.\$(OBJDIR)\nsJSCSSPageRule.obj \
.\$(OBJDIR)\nsJSCSSRule.obj \
.\$(OBJDIR)\nsJSCSSStyleDeclaration.obj \
.\$(OBJDIR)\nsJSCSSStyleRule.obj \
.\$(OBJDIR)\nsJSCSSStyleRuleCollection.obj \
.\$(OBJDIR)\nsJSCSSStyleSheet.obj \
.\$(OBJDIR)\nsJSCSSUnknownRule.obj \
$(NULL)
LINCS=-I$(XPDIST)\public\xpcom -I$(XPDIST)\public\raptor \
-I$(XPDIST)\public\dom -I$(XPDIST)\public\js -I$(PUBLIC)\netlib

File diff suppressed because it is too large Load Diff

View File

@@ -304,7 +304,7 @@ nsresult NS_InitCSSFontFaceRuleClass(nsIScriptContext *aContext, void **aPrototy
(PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) ||
!JSVAL_IS_OBJECT(vp)) {
if (NS_OK != NS_InitCSSStyleRuleClass(aContext, (void **)&parent_proto)) {
if (NS_OK != NS_InitCSSRuleClass(aContext, (void **)&parent_proto)) {
return NS_ERROR_FAILURE;
}
proto = JS_InitClass(jscontext, // context

View File

@@ -0,0 +1,424 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/* AUTO-GENERATED. DO NOT EDIT!!! */
#include "jsapi.h"
#include "nscore.h"
#include "nsIScriptContext.h"
#include "nsIJSScriptObject.h"
#include "nsIScriptObjectOwner.h"
#include "nsIScriptGlobalObject.h"
#include "nsIPtr.h"
#include "nsString.h"
#include "nsIDOMCSSImportRule.h"
#include "nsIDOMCSSStyleSheet.h"
static NS_DEFINE_IID(kIScriptObjectOwnerIID, NS_ISCRIPTOBJECTOWNER_IID);
static NS_DEFINE_IID(kIJSScriptObjectIID, NS_IJSSCRIPTOBJECT_IID);
static NS_DEFINE_IID(kIScriptGlobalObjectIID, NS_ISCRIPTGLOBALOBJECT_IID);
static NS_DEFINE_IID(kICSSImportRuleIID, NS_IDOMCSSIMPORTRULE_IID);
static NS_DEFINE_IID(kICSSStyleSheetIID, NS_IDOMCSSSTYLESHEET_IID);
NS_DEF_PTR(nsIDOMCSSImportRule);
NS_DEF_PTR(nsIDOMCSSStyleSheet);
//
// CSSImportRule property ids
//
enum CSSImportRule_slots {
CSSIMPORTRULE_HREF = -1,
CSSIMPORTRULE_MEDIA = -2,
CSSIMPORTRULE_STYLESHEET = -3
};
/***********************************************************************/
//
// CSSImportRule Properties Getter
//
PR_STATIC_CALLBACK(JSBool)
GetCSSImportRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
{
nsIDOMCSSImportRule *a = (nsIDOMCSSImportRule*)JS_GetPrivate(cx, obj);
// If there's no private data, this must be the prototype, so ignore
if (nsnull == a) {
return JS_TRUE;
}
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case CSSIMPORTRULE_HREF:
{
nsAutoString prop;
if (NS_OK == a->GetHref(prop)) {
JSString *jsstring = JS_NewUCStringCopyN(cx, prop, prop.Length());
// set the return value
*vp = STRING_TO_JSVAL(jsstring);
}
else {
return JS_FALSE;
}
break;
}
case CSSIMPORTRULE_MEDIA:
{
nsAutoString prop;
if (NS_OK == a->GetMedia(prop)) {
JSString *jsstring = JS_NewUCStringCopyN(cx, prop, prop.Length());
// set the return value
*vp = STRING_TO_JSVAL(jsstring);
}
else {
return JS_FALSE;
}
break;
}
case CSSIMPORTRULE_STYLESHEET:
{
nsIDOMCSSStyleSheet* prop;
if (NS_OK == a->GetStyleSheet(&prop)) {
// get the js object
if (prop != nsnull) {
nsIScriptObjectOwner *owner = nsnull;
if (NS_OK == prop->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) {
JSObject *object = nsnull;
nsIScriptContext *script_cx = (nsIScriptContext *)JS_GetContextPrivate(cx);
if (NS_OK == owner->GetScriptObject(script_cx, (void**)&object)) {
// set the return value
*vp = OBJECT_TO_JSVAL(object);
}
NS_RELEASE(owner);
}
NS_RELEASE(prop);
}
else {
*vp = JSVAL_NULL;
}
}
else {
return JS_FALSE;
}
break;
}
default:
{
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
PRBool rval;
rval = object->GetProperty(cx, id, vp);
NS_RELEASE(object);
return rval;
}
}
}
}
else {
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
PRBool rval;
rval = object->GetProperty(cx, id, vp);
NS_RELEASE(object);
return rval;
}
}
return PR_TRUE;
}
/***********************************************************************/
//
// CSSImportRule Properties Setter
//
PR_STATIC_CALLBACK(JSBool)
SetCSSImportRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
{
nsIDOMCSSImportRule *a = (nsIDOMCSSImportRule*)JS_GetPrivate(cx, obj);
// If there's no private data, this must be the prototype, so ignore
if (nsnull == a) {
return JS_TRUE;
}
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case CSSIMPORTRULE_HREF:
{
nsAutoString prop;
JSString *jsstring;
if ((jsstring = JS_ValueToString(cx, *vp)) != nsnull) {
prop.SetString(JS_GetStringChars(jsstring));
}
else {
prop.SetString((const char *)nsnull);
}
a->SetHref(prop);
break;
}
case CSSIMPORTRULE_MEDIA:
{
nsAutoString prop;
JSString *jsstring;
if ((jsstring = JS_ValueToString(cx, *vp)) != nsnull) {
prop.SetString(JS_GetStringChars(jsstring));
}
else {
prop.SetString((const char *)nsnull);
}
a->SetMedia(prop);
break;
}
default:
{
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
PRBool rval;
rval = object->SetProperty(cx, id, vp);
NS_RELEASE(object);
return rval;
}
}
}
}
else {
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
PRBool rval;
rval = object->SetProperty(cx, id, vp);
NS_RELEASE(object);
return rval;
}
}
return PR_TRUE;
}
//
// CSSImportRule finalizer
//
PR_STATIC_CALLBACK(void)
FinalizeCSSImportRule(JSContext *cx, JSObject *obj)
{
nsIDOMCSSImportRule *a = (nsIDOMCSSImportRule*)JS_GetPrivate(cx, obj);
if (nsnull != a) {
// get the js object
nsIScriptObjectOwner *owner = nsnull;
if (NS_OK == a->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) {
owner->SetScriptObject(nsnull);
NS_RELEASE(owner);
}
NS_RELEASE(a);
}
}
//
// CSSImportRule enumerate
//
PR_STATIC_CALLBACK(JSBool)
EnumerateCSSImportRule(JSContext *cx, JSObject *obj)
{
nsIDOMCSSImportRule *a = (nsIDOMCSSImportRule*)JS_GetPrivate(cx, obj);
if (nsnull != a) {
// get the js object
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
object->EnumerateProperty(cx);
NS_RELEASE(object);
}
}
return JS_TRUE;
}
//
// CSSImportRule resolve
//
PR_STATIC_CALLBACK(JSBool)
ResolveCSSImportRule(JSContext *cx, JSObject *obj, jsval id)
{
nsIDOMCSSImportRule *a = (nsIDOMCSSImportRule*)JS_GetPrivate(cx, obj);
if (nsnull != a) {
// get the js object
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
object->Resolve(cx, id);
NS_RELEASE(object);
}
}
return JS_TRUE;
}
/***********************************************************************/
//
// class for CSSImportRule
//
JSClass CSSImportRuleClass = {
"CSSImportRule",
JSCLASS_HAS_PRIVATE,
JS_PropertyStub,
JS_PropertyStub,
GetCSSImportRuleProperty,
SetCSSImportRuleProperty,
EnumerateCSSImportRule,
ResolveCSSImportRule,
JS_ConvertStub,
FinalizeCSSImportRule
};
//
// CSSImportRule class properties
//
static JSPropertySpec CSSImportRuleProperties[] =
{
{"href", CSSIMPORTRULE_HREF, JSPROP_ENUMERATE},
{"media", CSSIMPORTRULE_MEDIA, JSPROP_ENUMERATE},
{"styleSheet", CSSIMPORTRULE_STYLESHEET, JSPROP_ENUMERATE | JSPROP_READONLY},
{0}
};
//
// CSSImportRule class methods
//
static JSFunctionSpec CSSImportRuleMethods[] =
{
{0}
};
//
// CSSImportRule constructor
//
PR_STATIC_CALLBACK(JSBool)
CSSImportRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
return JS_FALSE;
}
//
// CSSImportRule class initialization
//
nsresult NS_InitCSSImportRuleClass(nsIScriptContext *aContext, void **aPrototype)
{
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
JSObject *proto = nsnull;
JSObject *constructor = nsnull;
JSObject *parent_proto = nsnull;
JSObject *global = JS_GetGlobalObject(jscontext);
jsval vp;
if ((PR_TRUE != JS_LookupProperty(jscontext, global, "CSSImportRule", &vp)) ||
!JSVAL_IS_OBJECT(vp) ||
((constructor = JSVAL_TO_OBJECT(vp)) == nsnull) ||
(PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) ||
!JSVAL_IS_OBJECT(vp)) {
if (NS_OK != NS_InitCSSRuleClass(aContext, (void **)&parent_proto)) {
return NS_ERROR_FAILURE;
}
proto = JS_InitClass(jscontext, // context
global, // global object
parent_proto, // parent proto
&CSSImportRuleClass, // JSClass
CSSImportRule, // JSNative ctor
0, // ctor args
CSSImportRuleProperties, // proto props
CSSImportRuleMethods, // proto funcs
nsnull, // ctor props (static)
nsnull); // ctor funcs (static)
if (nsnull == proto) {
return NS_ERROR_FAILURE;
}
}
else if ((nsnull != constructor) && JSVAL_IS_OBJECT(vp)) {
proto = JSVAL_TO_OBJECT(vp);
}
else {
return NS_ERROR_FAILURE;
}
if (aPrototype) {
*aPrototype = proto;
}
return NS_OK;
}
//
// Method for creating a new CSSImportRule JavaScript object
//
extern "C" NS_DOM nsresult NS_NewScriptCSSImportRule(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn)
{
NS_PRECONDITION(nsnull != aContext && nsnull != aSupports && nsnull != aReturn, "null argument to NS_NewScriptCSSImportRule");
JSObject *proto;
JSObject *parent;
nsIScriptObjectOwner *owner;
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
nsresult result = NS_OK;
nsIDOMCSSImportRule *aCSSImportRule;
if (nsnull == aParent) {
parent = nsnull;
}
else if (NS_OK == aParent->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) {
if (NS_OK != owner->GetScriptObject(aContext, (void **)&parent)) {
NS_RELEASE(owner);
return NS_ERROR_FAILURE;
}
NS_RELEASE(owner);
}
else {
return NS_ERROR_FAILURE;
}
if (NS_OK != NS_InitCSSImportRuleClass(aContext, (void **)&proto)) {
return NS_ERROR_FAILURE;
}
result = aSupports->QueryInterface(kICSSImportRuleIID, (void **)&aCSSImportRule);
if (NS_OK != result) {
return result;
}
// create a js object for this class
*aReturn = JS_NewObject(jscontext, &CSSImportRuleClass, proto, parent);
if (nsnull != *aReturn) {
// connect the native object to the js object
JS_SetPrivate(jscontext, (JSObject *)*aReturn, aCSSImportRule);
}
else {
NS_RELEASE(aCSSImportRule);
return NS_ERROR_FAILURE;
}
return NS_OK;
}

View File

@@ -43,7 +43,7 @@ NS_DEF_PTR(nsIDOMCSSMediaRule);
//
enum CSSMediaRule_slots {
CSSMEDIARULE_MEDIATYPES = -1,
CSSMEDIARULE_RULES = -2
CSSMEDIARULE_CSSRULES = -2
};
/***********************************************************************/
@@ -75,10 +75,10 @@ GetCSSMediaRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
}
break;
}
case CSSMEDIARULE_RULES:
case CSSMEDIARULE_CSSRULES:
{
nsIDOMCSSStyleRuleCollection* prop;
if (NS_OK == a->GetRules(&prop)) {
if (NS_OK == a->GetCssRules(&prop)) {
// get the js object
if (prop != nsnull) {
nsIScriptObjectOwner *owner = nsnull;
@@ -246,17 +246,16 @@ ResolveCSSMediaRule(JSContext *cx, JSObject *obj, jsval id)
//
// Native method AddRule
// Native method InsertRule
//
PR_STATIC_CALLBACK(JSBool)
CSSMediaRuleAddRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
CSSMediaRuleInsertRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
nsIDOMCSSMediaRule *nativeThis = (nsIDOMCSSMediaRule*)JS_GetPrivate(cx, obj);
JSBool rBool = JS_FALSE;
PRUint32 nativeRet;
nsAutoString b0;
nsAutoString b1;
PRUint32 b2;
PRUint32 b1;
*rval = JSVAL_NULL;
@@ -265,7 +264,7 @@ CSSMediaRuleAddRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval
return JS_TRUE;
}
if (argc >= 3) {
if (argc >= 2) {
JSString *jsstring0 = JS_ValueToString(cx, argv[0]);
if (nsnull != jsstring0) {
@@ -275,27 +274,19 @@ CSSMediaRuleAddRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval
b0.SetString(""); // Should this really be null??
}
JSString *jsstring1 = JS_ValueToString(cx, argv[1]);
if (nsnull != jsstring1) {
b1.SetString(JS_GetStringChars(jsstring1));
}
else {
b1.SetString(""); // Should this really be null??
}
if (!JS_ValueToInt32(cx, argv[2], (int32 *)&b2)) {
if (!JS_ValueToInt32(cx, argv[1], (int32 *)&b1)) {
JS_ReportError(cx, "Parameter must be a number");
return JS_FALSE;
}
if (NS_OK != nativeThis->AddRule(b0, b1, b2, &nativeRet)) {
if (NS_OK != nativeThis->InsertRule(b0, b1, &nativeRet)) {
return JS_FALSE;
}
*rval = INT_TO_JSVAL(nativeRet);
}
else {
JS_ReportError(cx, "Function addRule requires 3 parameters");
JS_ReportError(cx, "Function insertRule requires 2 parameters");
return JS_FALSE;
}
@@ -304,10 +295,10 @@ CSSMediaRuleAddRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval
//
// Native method RemoveRule
// Native method DeleteRule
//
PR_STATIC_CALLBACK(JSBool)
CSSMediaRuleRemoveRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
CSSMediaRuleDeleteRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
nsIDOMCSSMediaRule *nativeThis = (nsIDOMCSSMediaRule*)JS_GetPrivate(cx, obj);
JSBool rBool = JS_FALSE;
@@ -327,14 +318,14 @@ CSSMediaRuleRemoveRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, js
return JS_FALSE;
}
if (NS_OK != nativeThis->RemoveRule(b0)) {
if (NS_OK != nativeThis->DeleteRule(b0)) {
return JS_FALSE;
}
*rval = JSVAL_VOID;
}
else {
JS_ReportError(cx, "Function removeRule requires 1 parameters");
JS_ReportError(cx, "Function deleteRule requires 1 parameters");
return JS_FALSE;
}
@@ -366,7 +357,7 @@ JSClass CSSMediaRuleClass = {
static JSPropertySpec CSSMediaRuleProperties[] =
{
{"mediaTypes", CSSMEDIARULE_MEDIATYPES, JSPROP_ENUMERATE},
{"rules", CSSMEDIARULE_RULES, JSPROP_ENUMERATE | JSPROP_READONLY},
{"cssRules", CSSMEDIARULE_CSSRULES, JSPROP_ENUMERATE | JSPROP_READONLY},
{0}
};
@@ -376,8 +367,8 @@ static JSPropertySpec CSSMediaRuleProperties[] =
//
static JSFunctionSpec CSSMediaRuleMethods[] =
{
{"addRule", CSSMediaRuleAddRule, 3},
{"removeRule", CSSMediaRuleRemoveRule, 1},
{"insertRule", CSSMediaRuleInsertRule, 2},
{"deleteRule", CSSMediaRuleDeleteRule, 1},
{0}
};
@@ -410,7 +401,7 @@ nsresult NS_InitCSSMediaRuleClass(nsIScriptContext *aContext, void **aPrototype)
(PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) ||
!JSVAL_IS_OBJECT(vp)) {
if (NS_OK != NS_InitCSSStyleRuleClass(aContext, (void **)&parent_proto)) {
if (NS_OK != NS_InitCSSRuleClass(aContext, (void **)&parent_proto)) {
return NS_ERROR_FAILURE;
}
proto = JS_InitClass(jscontext, // context

View File

@@ -42,7 +42,7 @@ NS_DEF_PTR(nsIDOMCSSStyleDeclaration);
// CSSPageRule property ids
//
enum CSSPageRule_slots {
CSSPAGERULE_SELECTORTEXT = -1,
CSSPAGERULE_NAME = -1,
CSSPAGERULE_STYLE = -2
};
@@ -62,10 +62,10 @@ GetCSSPageRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case CSSPAGERULE_SELECTORTEXT:
case CSSPAGERULE_NAME:
{
nsAutoString prop;
if (NS_OK == a->GetSelectorText(prop)) {
if (NS_OK == a->GetName(prop)) {
JSString *jsstring = JS_NewUCStringCopyN(cx, prop, prop.Length());
// set the return value
*vp = STRING_TO_JSVAL(jsstring);
@@ -143,7 +143,7 @@ SetCSSPageRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case CSSPAGERULE_SELECTORTEXT:
case CSSPAGERULE_NAME:
{
nsAutoString prop;
JSString *jsstring;
@@ -154,7 +154,7 @@ SetCSSPageRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
prop.SetString((const char *)nsnull);
}
a->SetSelectorText(prop);
a->SetName(prop);
break;
}
@@ -291,7 +291,7 @@ JSClass CSSPageRuleClass = {
//
static JSPropertySpec CSSPageRuleProperties[] =
{
{"selectorText", CSSPAGERULE_SELECTORTEXT, JSPROP_ENUMERATE},
{"name", CSSPAGERULE_NAME, JSPROP_ENUMERATE},
{"style", CSSPAGERULE_STYLE, JSPROP_ENUMERATE},
{0}
};
@@ -334,7 +334,7 @@ nsresult NS_InitCSSPageRuleClass(nsIScriptContext *aContext, void **aPrototype)
(PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) ||
!JSVAL_IS_OBJECT(vp)) {
if (NS_OK != NS_InitCSSStyleRuleClass(aContext, (void **)&parent_proto)) {
if (NS_OK != NS_InitCSSRuleClass(aContext, (void **)&parent_proto)) {
return NS_ERROR_FAILURE;
}
proto = JS_InitClass(jscontext, // context

View File

@@ -25,35 +25,36 @@
#include "nsIScriptGlobalObject.h"
#include "nsIPtr.h"
#include "nsString.h"
#include "nsIDOMCSSStyleDeclaration.h"
#include "nsIDOMCSSStyleRuleSimple.h"
#include "nsIDOMCSSRule.h"
#include "nsIDOMCSSStyleSheet.h"
static NS_DEFINE_IID(kIScriptObjectOwnerIID, NS_ISCRIPTOBJECTOWNER_IID);
static NS_DEFINE_IID(kIJSScriptObjectIID, NS_IJSSCRIPTOBJECT_IID);
static NS_DEFINE_IID(kIScriptGlobalObjectIID, NS_ISCRIPTGLOBALOBJECT_IID);
static NS_DEFINE_IID(kICSSStyleDeclarationIID, NS_IDOMCSSSTYLEDECLARATION_IID);
static NS_DEFINE_IID(kICSSStyleRuleSimpleIID, NS_IDOMCSSSTYLERULESIMPLE_IID);
static NS_DEFINE_IID(kICSSRuleIID, NS_IDOMCSSRULE_IID);
static NS_DEFINE_IID(kICSSStyleSheetIID, NS_IDOMCSSSTYLESHEET_IID);
NS_DEF_PTR(nsIDOMCSSStyleDeclaration);
NS_DEF_PTR(nsIDOMCSSStyleRuleSimple);
NS_DEF_PTR(nsIDOMCSSRule);
NS_DEF_PTR(nsIDOMCSSStyleSheet);
//
// CSSStyleRuleSimple property ids
// CSSRule property ids
//
enum CSSStyleRuleSimple_slots {
CSSSTYLERULESIMPLE_SELECTORTEXT = -1,
CSSSTYLERULESIMPLE_STYLE = -2
enum CSSRule_slots {
CSSRULE_TYPE = -1,
CSSRULE_CSSTEXT = -2,
CSSRULE_SHEET = -3
};
/***********************************************************************/
//
// CSSStyleRuleSimple Properties Getter
// CSSRule Properties Getter
//
PR_STATIC_CALLBACK(JSBool)
GetCSSStyleRuleSimpleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
GetCSSRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
{
nsIDOMCSSStyleRuleSimple *a = (nsIDOMCSSStyleRuleSimple*)JS_GetPrivate(cx, obj);
nsIDOMCSSRule *a = (nsIDOMCSSRule*)JS_GetPrivate(cx, obj);
// If there's no private data, this must be the prototype, so ignore
if (nsnull == a) {
@@ -62,10 +63,21 @@ GetCSSStyleRuleSimpleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case CSSSTYLERULESIMPLE_SELECTORTEXT:
case CSSRULE_TYPE:
{
PRUint16 prop;
if (NS_OK == a->GetType(&prop)) {
*vp = INT_TO_JSVAL(prop);
}
else {
return JS_FALSE;
}
break;
}
case CSSRULE_CSSTEXT:
{
nsAutoString prop;
if (NS_OK == a->GetSelectorText(prop)) {
if (NS_OK == a->GetCssText(prop)) {
JSString *jsstring = JS_NewUCStringCopyN(cx, prop, prop.Length());
// set the return value
*vp = STRING_TO_JSVAL(jsstring);
@@ -75,10 +87,10 @@ GetCSSStyleRuleSimpleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
}
break;
}
case CSSSTYLERULESIMPLE_STYLE:
case CSSRULE_SHEET:
{
nsIDOMCSSStyleDeclaration* prop;
if (NS_OK == a->GetStyle(&prop)) {
nsIDOMCSSStyleSheet* prop;
if (NS_OK == a->GetSheet(&prop)) {
// get the js object
if (prop != nsnull) {
nsIScriptObjectOwner *owner = nsnull;
@@ -129,12 +141,12 @@ GetCSSStyleRuleSimpleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
/***********************************************************************/
//
// CSSStyleRuleSimple Properties Setter
// CSSRule Properties Setter
//
PR_STATIC_CALLBACK(JSBool)
SetCSSStyleRuleSimpleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
SetCSSRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
{
nsIDOMCSSStyleRuleSimple *a = (nsIDOMCSSStyleRuleSimple*)JS_GetPrivate(cx, obj);
nsIDOMCSSRule *a = (nsIDOMCSSRule*)JS_GetPrivate(cx, obj);
// If there's no private data, this must be the prototype, so ignore
if (nsnull == a) {
@@ -143,7 +155,7 @@ SetCSSStyleRuleSimpleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case CSSSTYLERULESIMPLE_SELECTORTEXT:
case CSSRULE_CSSTEXT:
{
nsAutoString prop;
JSString *jsstring;
@@ -154,7 +166,7 @@ SetCSSStyleRuleSimpleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
prop.SetString((const char *)nsnull);
}
a->SetSelectorText(prop);
a->SetCssText(prop);
break;
}
@@ -185,12 +197,12 @@ SetCSSStyleRuleSimpleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
//
// CSSStyleRuleSimple finalizer
// CSSRule finalizer
//
PR_STATIC_CALLBACK(void)
FinalizeCSSStyleRuleSimple(JSContext *cx, JSObject *obj)
FinalizeCSSRule(JSContext *cx, JSObject *obj)
{
nsIDOMCSSStyleRuleSimple *a = (nsIDOMCSSStyleRuleSimple*)JS_GetPrivate(cx, obj);
nsIDOMCSSRule *a = (nsIDOMCSSRule*)JS_GetPrivate(cx, obj);
if (nsnull != a) {
// get the js object
@@ -206,12 +218,12 @@ FinalizeCSSStyleRuleSimple(JSContext *cx, JSObject *obj)
//
// CSSStyleRuleSimple enumerate
// CSSRule enumerate
//
PR_STATIC_CALLBACK(JSBool)
EnumerateCSSStyleRuleSimple(JSContext *cx, JSObject *obj)
EnumerateCSSRule(JSContext *cx, JSObject *obj)
{
nsIDOMCSSStyleRuleSimple *a = (nsIDOMCSSStyleRuleSimple*)JS_GetPrivate(cx, obj);
nsIDOMCSSRule *a = (nsIDOMCSSRule*)JS_GetPrivate(cx, obj);
if (nsnull != a) {
// get the js object
@@ -226,12 +238,12 @@ EnumerateCSSStyleRuleSimple(JSContext *cx, JSObject *obj)
//
// CSSStyleRuleSimple resolve
// CSSRule resolve
//
PR_STATIC_CALLBACK(JSBool)
ResolveCSSStyleRuleSimple(JSContext *cx, JSObject *obj, jsval id)
ResolveCSSRule(JSContext *cx, JSObject *obj, jsval id)
{
nsIDOMCSSStyleRuleSimple *a = (nsIDOMCSSStyleRuleSimple*)JS_GetPrivate(cx, obj);
nsIDOMCSSRule *a = (nsIDOMCSSRule*)JS_GetPrivate(cx, obj);
if (nsnull != a) {
// get the js object
@@ -247,56 +259,57 @@ ResolveCSSStyleRuleSimple(JSContext *cx, JSObject *obj, jsval id)
/***********************************************************************/
//
// class for CSSStyleRuleSimple
// class for CSSRule
//
JSClass CSSStyleRuleSimpleClass = {
"CSSStyleRuleSimple",
JSClass CSSRuleClass = {
"CSSRule",
JSCLASS_HAS_PRIVATE,
JS_PropertyStub,
JS_PropertyStub,
GetCSSStyleRuleSimpleProperty,
SetCSSStyleRuleSimpleProperty,
EnumerateCSSStyleRuleSimple,
ResolveCSSStyleRuleSimple,
GetCSSRuleProperty,
SetCSSRuleProperty,
EnumerateCSSRule,
ResolveCSSRule,
JS_ConvertStub,
FinalizeCSSStyleRuleSimple
FinalizeCSSRule
};
//
// CSSStyleRuleSimple class properties
// CSSRule class properties
//
static JSPropertySpec CSSStyleRuleSimpleProperties[] =
static JSPropertySpec CSSRuleProperties[] =
{
{"selectorText", CSSSTYLERULESIMPLE_SELECTORTEXT, JSPROP_ENUMERATE},
{"style", CSSSTYLERULESIMPLE_STYLE, JSPROP_ENUMERATE | JSPROP_READONLY},
{"type", CSSRULE_TYPE, JSPROP_ENUMERATE | JSPROP_READONLY},
{"cssText", CSSRULE_CSSTEXT, JSPROP_ENUMERATE},
{"sheet", CSSRULE_SHEET, JSPROP_ENUMERATE | JSPROP_READONLY},
{0}
};
//
// CSSStyleRuleSimple class methods
// CSSRule class methods
//
static JSFunctionSpec CSSStyleRuleSimpleMethods[] =
static JSFunctionSpec CSSRuleMethods[] =
{
{0}
};
//
// CSSStyleRuleSimple constructor
// CSSRule constructor
//
PR_STATIC_CALLBACK(JSBool)
CSSStyleRuleSimple(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
CSSRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
return JS_FALSE;
}
//
// CSSStyleRuleSimple class initialization
// CSSRule class initialization
//
nsresult NS_InitCSSStyleRuleSimpleClass(nsIScriptContext *aContext, void **aPrototype)
nsresult NS_InitCSSRuleClass(nsIScriptContext *aContext, void **aPrototype)
{
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
JSObject *proto = nsnull;
@@ -305,29 +318,49 @@ nsresult NS_InitCSSStyleRuleSimpleClass(nsIScriptContext *aContext, void **aProt
JSObject *global = JS_GetGlobalObject(jscontext);
jsval vp;
if ((PR_TRUE != JS_LookupProperty(jscontext, global, "CSSStyleRuleSimple", &vp)) ||
if ((PR_TRUE != JS_LookupProperty(jscontext, global, "CSSRule", &vp)) ||
!JSVAL_IS_OBJECT(vp) ||
((constructor = JSVAL_TO_OBJECT(vp)) == nsnull) ||
(PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) ||
!JSVAL_IS_OBJECT(vp)) {
if (NS_OK != NS_InitCSSStyleRuleClass(aContext, (void **)&parent_proto)) {
return NS_ERROR_FAILURE;
}
proto = JS_InitClass(jscontext, // context
global, // global object
parent_proto, // parent proto
&CSSStyleRuleSimpleClass, // JSClass
CSSStyleRuleSimple, // JSNative ctor
&CSSRuleClass, // JSClass
CSSRule, // JSNative ctor
0, // ctor args
CSSStyleRuleSimpleProperties, // proto props
CSSStyleRuleSimpleMethods, // proto funcs
CSSRuleProperties, // proto props
CSSRuleMethods, // proto funcs
nsnull, // ctor props (static)
nsnull); // ctor funcs (static)
if (nsnull == proto) {
return NS_ERROR_FAILURE;
}
if ((PR_TRUE == JS_LookupProperty(jscontext, global, "CSSRule", &vp)) &&
JSVAL_IS_OBJECT(vp) &&
((constructor = JSVAL_TO_OBJECT(vp)) != nsnull)) {
vp = INT_TO_JSVAL(nsIDOMCSSRule::UNKNOWN_RULE);
JS_SetProperty(jscontext, constructor, "UNKNOWN_RULE", &vp);
vp = INT_TO_JSVAL(nsIDOMCSSRule::STYLE_RULE);
JS_SetProperty(jscontext, constructor, "STYLE_RULE", &vp);
vp = INT_TO_JSVAL(nsIDOMCSSRule::IMPORT_RULE);
JS_SetProperty(jscontext, constructor, "IMPORT_RULE", &vp);
vp = INT_TO_JSVAL(nsIDOMCSSRule::MEDIA_RULE);
JS_SetProperty(jscontext, constructor, "MEDIA_RULE", &vp);
vp = INT_TO_JSVAL(nsIDOMCSSRule::FONT_FACE_RULE);
JS_SetProperty(jscontext, constructor, "FONT_FACE_RULE", &vp);
vp = INT_TO_JSVAL(nsIDOMCSSRule::PAGE_RULE);
JS_SetProperty(jscontext, constructor, "PAGE_RULE", &vp);
}
}
else if ((nsnull != constructor) && JSVAL_IS_OBJECT(vp)) {
proto = JSVAL_TO_OBJECT(vp);
@@ -344,17 +377,17 @@ nsresult NS_InitCSSStyleRuleSimpleClass(nsIScriptContext *aContext, void **aProt
//
// Method for creating a new CSSStyleRuleSimple JavaScript object
// Method for creating a new CSSRule JavaScript object
//
extern "C" NS_DOM nsresult NS_NewScriptCSSStyleRuleSimple(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn)
extern "C" NS_DOM nsresult NS_NewScriptCSSRule(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn)
{
NS_PRECONDITION(nsnull != aContext && nsnull != aSupports && nsnull != aReturn, "null argument to NS_NewScriptCSSStyleRuleSimple");
NS_PRECONDITION(nsnull != aContext && nsnull != aSupports && nsnull != aReturn, "null argument to NS_NewScriptCSSRule");
JSObject *proto;
JSObject *parent;
nsIScriptObjectOwner *owner;
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
nsresult result = NS_OK;
nsIDOMCSSStyleRuleSimple *aCSSStyleRuleSimple;
nsIDOMCSSRule *aCSSRule;
if (nsnull == aParent) {
parent = nsnull;
@@ -370,23 +403,23 @@ extern "C" NS_DOM nsresult NS_NewScriptCSSStyleRuleSimple(nsIScriptContext *aCon
return NS_ERROR_FAILURE;
}
if (NS_OK != NS_InitCSSStyleRuleSimpleClass(aContext, (void **)&proto)) {
if (NS_OK != NS_InitCSSRuleClass(aContext, (void **)&proto)) {
return NS_ERROR_FAILURE;
}
result = aSupports->QueryInterface(kICSSStyleRuleSimpleIID, (void **)&aCSSStyleRuleSimple);
result = aSupports->QueryInterface(kICSSRuleIID, (void **)&aCSSRule);
if (NS_OK != result) {
return result;
}
// create a js object for this class
*aReturn = JS_NewObject(jscontext, &CSSStyleRuleSimpleClass, proto, parent);
*aReturn = JS_NewObject(jscontext, &CSSRuleClass, proto, parent);
if (nsnull != *aReturn) {
// connect the native object to the js object
JS_SetPrivate(jscontext, (JSObject *)*aReturn, aCSSStyleRuleSimple);
JS_SetPrivate(jscontext, (JSObject *)*aReturn, aCSSRule);
}
else {
NS_RELEASE(aCSSStyleRuleSimple);
NS_RELEASE(aCSSRule);
return NS_ERROR_FAILURE;
}

File diff suppressed because it is too large Load Diff

View File

@@ -25,21 +25,25 @@
#include "nsIScriptGlobalObject.h"
#include "nsIPtr.h"
#include "nsString.h"
#include "nsIDOMCSSStyleDeclaration.h"
#include "nsIDOMCSSStyleRule.h"
static NS_DEFINE_IID(kIScriptObjectOwnerIID, NS_ISCRIPTOBJECTOWNER_IID);
static NS_DEFINE_IID(kIJSScriptObjectIID, NS_IJSSCRIPTOBJECT_IID);
static NS_DEFINE_IID(kIScriptGlobalObjectIID, NS_ISCRIPTGLOBALOBJECT_IID);
static NS_DEFINE_IID(kICSSStyleDeclarationIID, NS_IDOMCSSSTYLEDECLARATION_IID);
static NS_DEFINE_IID(kICSSStyleRuleIID, NS_IDOMCSSSTYLERULE_IID);
NS_DEF_PTR(nsIDOMCSSStyleDeclaration);
NS_DEF_PTR(nsIDOMCSSStyleRule);
//
// CSSStyleRule property ids
//
enum CSSStyleRule_slots {
CSSSTYLERULE_TYPE = -1
CSSSTYLERULE_SELECTORTEXT = -1,
CSSSTYLERULE_STYLE = -2
};
/***********************************************************************/
@@ -58,10 +62,10 @@ GetCSSStyleRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case CSSSTYLERULE_TYPE:
case CSSSTYLERULE_SELECTORTEXT:
{
nsAutoString prop;
if (NS_OK == a->GetType(prop)) {
if (NS_OK == a->GetSelectorText(prop)) {
JSString *jsstring = JS_NewUCStringCopyN(cx, prop, prop.Length());
// set the return value
*vp = STRING_TO_JSVAL(jsstring);
@@ -71,6 +75,33 @@ GetCSSStyleRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
}
break;
}
case CSSSTYLERULE_STYLE:
{
nsIDOMCSSStyleDeclaration* prop;
if (NS_OK == a->GetStyle(&prop)) {
// get the js object
if (prop != nsnull) {
nsIScriptObjectOwner *owner = nsnull;
if (NS_OK == prop->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) {
JSObject *object = nsnull;
nsIScriptContext *script_cx = (nsIScriptContext *)JS_GetContextPrivate(cx);
if (NS_OK == owner->GetScriptObject(script_cx, (void**)&object)) {
// set the return value
*vp = OBJECT_TO_JSVAL(object);
}
NS_RELEASE(owner);
}
NS_RELEASE(prop);
}
else {
*vp = JSVAL_NULL;
}
}
else {
return JS_FALSE;
}
break;
}
default:
{
nsIJSScriptObject *object;
@@ -112,7 +143,44 @@ SetCSSStyleRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case 0:
case CSSSTYLERULE_SELECTORTEXT:
{
nsAutoString prop;
JSString *jsstring;
if ((jsstring = JS_ValueToString(cx, *vp)) != nsnull) {
prop.SetString(JS_GetStringChars(jsstring));
}
else {
prop.SetString((const char *)nsnull);
}
a->SetSelectorText(prop);
break;
}
case CSSSTYLERULE_STYLE:
{
nsIDOMCSSStyleDeclaration* prop;
if (JSVAL_IS_NULL(*vp)) {
prop = nsnull;
}
else if (JSVAL_IS_OBJECT(*vp)) {
JSObject *jsobj = JSVAL_TO_OBJECT(*vp);
nsISupports *supports = (nsISupports *)JS_GetPrivate(cx, jsobj);
if (NS_OK != supports->QueryInterface(kICSSStyleDeclarationIID, (void **)&prop)) {
JS_ReportError(cx, "Parameter must be of type CSSStyleDeclaration");
return JS_FALSE;
}
}
else {
JS_ReportError(cx, "Parameter must be an object");
return JS_FALSE;
}
a->SetStyle(prop);
if (prop) NS_RELEASE(prop);
break;
}
default:
{
nsIJSScriptObject *object;
@@ -223,7 +291,8 @@ JSClass CSSStyleRuleClass = {
//
static JSPropertySpec CSSStyleRuleProperties[] =
{
{"type", CSSSTYLERULE_TYPE, JSPROP_ENUMERATE | JSPROP_READONLY},
{"selectorText", CSSSTYLERULE_SELECTORTEXT, JSPROP_ENUMERATE},
{"style", CSSSTYLERULE_STYLE, JSPROP_ENUMERATE},
{0}
};
@@ -265,6 +334,9 @@ nsresult NS_InitCSSStyleRuleClass(nsIScriptContext *aContext, void **aPrototype)
(PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) ||
!JSVAL_IS_OBJECT(vp)) {
if (NS_OK != NS_InitCSSRuleClass(aContext, (void **)&parent_proto)) {
return NS_ERROR_FAILURE;
}
proto = JS_InitClass(jscontext, // context
global, // global object
parent_proto, // parent proto

View File

@@ -25,8 +25,8 @@
#include "nsIScriptGlobalObject.h"
#include "nsIPtr.h"
#include "nsString.h"
#include "nsIDOMHTMLElement.h"
#include "nsIDOMStyleSheetCollection.h"
#include "nsIDOMNode.h"
#include "nsIDOMStyleSheet.h"
#include "nsIDOMCSSStyleRuleCollection.h"
#include "nsIDOMCSSStyleSheet.h"
@@ -34,13 +34,13 @@
static NS_DEFINE_IID(kIScriptObjectOwnerIID, NS_ISCRIPTOBJECTOWNER_IID);
static NS_DEFINE_IID(kIJSScriptObjectIID, NS_IJSSCRIPTOBJECT_IID);
static NS_DEFINE_IID(kIScriptGlobalObjectIID, NS_ISCRIPTGLOBALOBJECT_IID);
static NS_DEFINE_IID(kIHTMLElementIID, NS_IDOMHTMLELEMENT_IID);
static NS_DEFINE_IID(kIStyleSheetCollectionIID, NS_IDOMSTYLESHEETCOLLECTION_IID);
static NS_DEFINE_IID(kINodeIID, NS_IDOMNODE_IID);
static NS_DEFINE_IID(kIStyleSheetIID, NS_IDOMSTYLESHEET_IID);
static NS_DEFINE_IID(kICSSStyleRuleCollectionIID, NS_IDOMCSSSTYLERULECOLLECTION_IID);
static NS_DEFINE_IID(kICSSStyleSheetIID, NS_IDOMCSSSTYLESHEET_IID);
NS_DEF_PTR(nsIDOMHTMLElement);
NS_DEF_PTR(nsIDOMStyleSheetCollection);
NS_DEF_PTR(nsIDOMNode);
NS_DEF_PTR(nsIDOMStyleSheet);
NS_DEF_PTR(nsIDOMCSSStyleRuleCollection);
NS_DEF_PTR(nsIDOMCSSStyleSheet);
@@ -48,12 +48,12 @@ NS_DEF_PTR(nsIDOMCSSStyleSheet);
// CSSStyleSheet property ids
//
enum CSSStyleSheet_slots {
CSSSTYLESHEET_OWNINGELEMENT = -1,
CSSSTYLESHEET_OWNINGNODE = -1,
CSSSTYLESHEET_PARENTSTYLESHEET = -2,
CSSSTYLESHEET_HREF = -3,
CSSSTYLESHEET_TITLE = -4,
CSSSTYLESHEET_IMPORTS = -5,
CSSSTYLESHEET_RULES = -6
CSSSTYLESHEET_MEDIA = -5,
CSSSTYLESHEET_CSSRULES = -6
};
/***********************************************************************/
@@ -72,10 +72,10 @@ GetCSSStyleSheetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case CSSSTYLESHEET_OWNINGELEMENT:
case CSSSTYLESHEET_OWNINGNODE:
{
nsIDOMHTMLElement* prop;
if (NS_OK == a->GetOwningElement(&prop)) {
nsIDOMNode* prop;
if (NS_OK == a->GetOwningNode(&prop)) {
// get the js object
if (prop != nsnull) {
nsIScriptObjectOwner *owner = nsnull;
@@ -101,7 +101,7 @@ GetCSSStyleSheetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
}
case CSSSTYLESHEET_PARENTSTYLESHEET:
{
nsIDOMCSSStyleSheet* prop;
nsIDOMStyleSheet* prop;
if (NS_OK == a->GetParentStyleSheet(&prop)) {
// get the js object
if (prop != nsnull) {
@@ -152,37 +152,23 @@ GetCSSStyleSheetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
}
break;
}
case CSSSTYLESHEET_IMPORTS:
case CSSSTYLESHEET_MEDIA:
{
nsIDOMStyleSheetCollection* prop;
if (NS_OK == a->GetImports(&prop)) {
// get the js object
if (prop != nsnull) {
nsIScriptObjectOwner *owner = nsnull;
if (NS_OK == prop->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) {
JSObject *object = nsnull;
nsIScriptContext *script_cx = (nsIScriptContext *)JS_GetContextPrivate(cx);
if (NS_OK == owner->GetScriptObject(script_cx, (void**)&object)) {
// set the return value
*vp = OBJECT_TO_JSVAL(object);
}
NS_RELEASE(owner);
}
NS_RELEASE(prop);
}
else {
*vp = JSVAL_NULL;
}
nsAutoString prop;
if (NS_OK == a->GetMedia(prop)) {
JSString *jsstring = JS_NewUCStringCopyN(cx, prop, prop.Length());
// set the return value
*vp = STRING_TO_JSVAL(jsstring);
}
else {
return JS_FALSE;
}
break;
}
case CSSSTYLESHEET_RULES:
case CSSSTYLESHEET_CSSRULES:
{
nsIDOMCSSStyleRuleCollection* prop;
if (NS_OK == a->GetRules(&prop)) {
if (NS_OK == a->GetCssRules(&prop)) {
// get the js object
if (prop != nsnull) {
nsIScriptObjectOwner *owner = nsnull;
@@ -336,68 +322,10 @@ ResolveCSSStyleSheet(JSContext *cx, JSObject *obj, jsval id)
//
// Native method AddRule
// Native method InsertRule
//
PR_STATIC_CALLBACK(JSBool)
CSSStyleSheetAddRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
nsIDOMCSSStyleSheet *nativeThis = (nsIDOMCSSStyleSheet*)JS_GetPrivate(cx, obj);
JSBool rBool = JS_FALSE;
PRUint32 nativeRet;
nsAutoString b0;
nsAutoString b1;
PRUint32 b2;
*rval = JSVAL_NULL;
// If there's no private data, this must be the prototype, so ignore
if (nsnull == nativeThis) {
return JS_TRUE;
}
if (argc >= 3) {
JSString *jsstring0 = JS_ValueToString(cx, argv[0]);
if (nsnull != jsstring0) {
b0.SetString(JS_GetStringChars(jsstring0));
}
else {
b0.SetString(""); // Should this really be null??
}
JSString *jsstring1 = JS_ValueToString(cx, argv[1]);
if (nsnull != jsstring1) {
b1.SetString(JS_GetStringChars(jsstring1));
}
else {
b1.SetString(""); // Should this really be null??
}
if (!JS_ValueToInt32(cx, argv[2], (int32 *)&b2)) {
JS_ReportError(cx, "Parameter must be a number");
return JS_FALSE;
}
if (NS_OK != nativeThis->AddRule(b0, b1, b2, &nativeRet)) {
return JS_FALSE;
}
*rval = INT_TO_JSVAL(nativeRet);
}
else {
JS_ReportError(cx, "Function addRule requires 3 parameters");
return JS_FALSE;
}
return JS_TRUE;
}
//
// Native method AddImport
//
PR_STATIC_CALLBACK(JSBool)
CSSStyleSheetAddImport(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
CSSStyleSheetInsertRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
nsIDOMCSSStyleSheet *nativeThis = (nsIDOMCSSStyleSheet*)JS_GetPrivate(cx, obj);
JSBool rBool = JS_FALSE;
@@ -427,14 +355,14 @@ CSSStyleSheetAddImport(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, js
return JS_FALSE;
}
if (NS_OK != nativeThis->AddImport(b0, b1, &nativeRet)) {
if (NS_OK != nativeThis->InsertRule(b0, b1, &nativeRet)) {
return JS_FALSE;
}
*rval = INT_TO_JSVAL(nativeRet);
}
else {
JS_ReportError(cx, "Function addImport requires 2 parameters");
JS_ReportError(cx, "Function insertRule requires 2 parameters");
return JS_FALSE;
}
@@ -443,10 +371,10 @@ CSSStyleSheetAddImport(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, js
//
// Native method RemoveRule
// Native method DeleteRule
//
PR_STATIC_CALLBACK(JSBool)
CSSStyleSheetRemoveRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
CSSStyleSheetDeleteRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
nsIDOMCSSStyleSheet *nativeThis = (nsIDOMCSSStyleSheet*)JS_GetPrivate(cx, obj);
JSBool rBool = JS_FALSE;
@@ -466,53 +394,14 @@ CSSStyleSheetRemoveRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, j
return JS_FALSE;
}
if (NS_OK != nativeThis->RemoveRule(b0)) {
if (NS_OK != nativeThis->DeleteRule(b0)) {
return JS_FALSE;
}
*rval = JSVAL_VOID;
}
else {
JS_ReportError(cx, "Function removeRule requires 1 parameters");
return JS_FALSE;
}
return JS_TRUE;
}
//
// Native method RemoveImport
//
PR_STATIC_CALLBACK(JSBool)
CSSStyleSheetRemoveImport(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
nsIDOMCSSStyleSheet *nativeThis = (nsIDOMCSSStyleSheet*)JS_GetPrivate(cx, obj);
JSBool rBool = JS_FALSE;
PRUint32 b0;
*rval = JSVAL_NULL;
// If there's no private data, this must be the prototype, so ignore
if (nsnull == nativeThis) {
return JS_TRUE;
}
if (argc >= 1) {
if (!JS_ValueToInt32(cx, argv[0], (int32 *)&b0)) {
JS_ReportError(cx, "Parameter must be a number");
return JS_FALSE;
}
if (NS_OK != nativeThis->RemoveImport(b0)) {
return JS_FALSE;
}
*rval = JSVAL_VOID;
}
else {
JS_ReportError(cx, "Function removeImport requires 1 parameters");
JS_ReportError(cx, "Function deleteRule requires 1 parameters");
return JS_FALSE;
}
@@ -543,12 +432,12 @@ JSClass CSSStyleSheetClass = {
//
static JSPropertySpec CSSStyleSheetProperties[] =
{
{"owningElement", CSSSTYLESHEET_OWNINGELEMENT, JSPROP_ENUMERATE | JSPROP_READONLY},
{"owningNode", CSSSTYLESHEET_OWNINGNODE, JSPROP_ENUMERATE | JSPROP_READONLY},
{"parentStyleSheet", CSSSTYLESHEET_PARENTSTYLESHEET, JSPROP_ENUMERATE | JSPROP_READONLY},
{"href", CSSSTYLESHEET_HREF, JSPROP_ENUMERATE | JSPROP_READONLY},
{"title", CSSSTYLESHEET_TITLE, JSPROP_ENUMERATE | JSPROP_READONLY},
{"imports", CSSSTYLESHEET_IMPORTS, JSPROP_ENUMERATE | JSPROP_READONLY},
{"rules", CSSSTYLESHEET_RULES, JSPROP_ENUMERATE | JSPROP_READONLY},
{"media", CSSSTYLESHEET_MEDIA, JSPROP_ENUMERATE | JSPROP_READONLY},
{"cssRules", CSSSTYLESHEET_CSSRULES, JSPROP_ENUMERATE | JSPROP_READONLY},
{0}
};
@@ -558,10 +447,8 @@ static JSPropertySpec CSSStyleSheetProperties[] =
//
static JSFunctionSpec CSSStyleSheetMethods[] =
{
{"addRule", CSSStyleSheetAddRule, 3},
{"addImport", CSSStyleSheetAddImport, 2},
{"removeRule", CSSStyleSheetRemoveRule, 1},
{"removeImport", CSSStyleSheetRemoveImport, 1},
{"insertRule", CSSStyleSheetInsertRule, 2},
{"deleteRule", CSSStyleSheetDeleteRule, 1},
{0}
};

View File

@@ -0,0 +1,329 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/* AUTO-GENERATED. DO NOT EDIT!!! */
#include "jsapi.h"
#include "nscore.h"
#include "nsIScriptContext.h"
#include "nsIJSScriptObject.h"
#include "nsIScriptObjectOwner.h"
#include "nsIScriptGlobalObject.h"
#include "nsIPtr.h"
#include "nsString.h"
#include "nsIDOMCSSUnknownRule.h"
static NS_DEFINE_IID(kIScriptObjectOwnerIID, NS_ISCRIPTOBJECTOWNER_IID);
static NS_DEFINE_IID(kIJSScriptObjectIID, NS_IJSSCRIPTOBJECT_IID);
static NS_DEFINE_IID(kIScriptGlobalObjectIID, NS_ISCRIPTGLOBALOBJECT_IID);
static NS_DEFINE_IID(kICSSUnknownRuleIID, NS_IDOMCSSUNKNOWNRULE_IID);
NS_DEF_PTR(nsIDOMCSSUnknownRule);
/***********************************************************************/
//
// CSSUnknownRule Properties Getter
//
PR_STATIC_CALLBACK(JSBool)
GetCSSUnknownRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
{
nsIDOMCSSUnknownRule *a = (nsIDOMCSSUnknownRule*)JS_GetPrivate(cx, obj);
// If there's no private data, this must be the prototype, so ignore
if (nsnull == a) {
return JS_TRUE;
}
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case 0:
default:
{
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
PRBool rval;
rval = object->GetProperty(cx, id, vp);
NS_RELEASE(object);
return rval;
}
}
}
}
else {
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
PRBool rval;
rval = object->GetProperty(cx, id, vp);
NS_RELEASE(object);
return rval;
}
}
return PR_TRUE;
}
/***********************************************************************/
//
// CSSUnknownRule Properties Setter
//
PR_STATIC_CALLBACK(JSBool)
SetCSSUnknownRuleProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
{
nsIDOMCSSUnknownRule *a = (nsIDOMCSSUnknownRule*)JS_GetPrivate(cx, obj);
// If there's no private data, this must be the prototype, so ignore
if (nsnull == a) {
return JS_TRUE;
}
if (JSVAL_IS_INT(id)) {
switch(JSVAL_TO_INT(id)) {
case 0:
default:
{
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
PRBool rval;
rval = object->SetProperty(cx, id, vp);
NS_RELEASE(object);
return rval;
}
}
}
}
else {
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
PRBool rval;
rval = object->SetProperty(cx, id, vp);
NS_RELEASE(object);
return rval;
}
}
return PR_TRUE;
}
//
// CSSUnknownRule finalizer
//
PR_STATIC_CALLBACK(void)
FinalizeCSSUnknownRule(JSContext *cx, JSObject *obj)
{
nsIDOMCSSUnknownRule *a = (nsIDOMCSSUnknownRule*)JS_GetPrivate(cx, obj);
if (nsnull != a) {
// get the js object
nsIScriptObjectOwner *owner = nsnull;
if (NS_OK == a->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) {
owner->SetScriptObject(nsnull);
NS_RELEASE(owner);
}
NS_RELEASE(a);
}
}
//
// CSSUnknownRule enumerate
//
PR_STATIC_CALLBACK(JSBool)
EnumerateCSSUnknownRule(JSContext *cx, JSObject *obj)
{
nsIDOMCSSUnknownRule *a = (nsIDOMCSSUnknownRule*)JS_GetPrivate(cx, obj);
if (nsnull != a) {
// get the js object
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
object->EnumerateProperty(cx);
NS_RELEASE(object);
}
}
return JS_TRUE;
}
//
// CSSUnknownRule resolve
//
PR_STATIC_CALLBACK(JSBool)
ResolveCSSUnknownRule(JSContext *cx, JSObject *obj, jsval id)
{
nsIDOMCSSUnknownRule *a = (nsIDOMCSSUnknownRule*)JS_GetPrivate(cx, obj);
if (nsnull != a) {
// get the js object
nsIJSScriptObject *object;
if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) {
object->Resolve(cx, id);
NS_RELEASE(object);
}
}
return JS_TRUE;
}
/***********************************************************************/
//
// class for CSSUnknownRule
//
JSClass CSSUnknownRuleClass = {
"CSSUnknownRule",
JSCLASS_HAS_PRIVATE,
JS_PropertyStub,
JS_PropertyStub,
GetCSSUnknownRuleProperty,
SetCSSUnknownRuleProperty,
EnumerateCSSUnknownRule,
ResolveCSSUnknownRule,
JS_ConvertStub,
FinalizeCSSUnknownRule
};
//
// CSSUnknownRule class properties
//
static JSPropertySpec CSSUnknownRuleProperties[] =
{
{0}
};
//
// CSSUnknownRule class methods
//
static JSFunctionSpec CSSUnknownRuleMethods[] =
{
{0}
};
//
// CSSUnknownRule constructor
//
PR_STATIC_CALLBACK(JSBool)
CSSUnknownRule(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
{
return JS_FALSE;
}
//
// CSSUnknownRule class initialization
//
nsresult NS_InitCSSUnknownRuleClass(nsIScriptContext *aContext, void **aPrototype)
{
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
JSObject *proto = nsnull;
JSObject *constructor = nsnull;
JSObject *parent_proto = nsnull;
JSObject *global = JS_GetGlobalObject(jscontext);
jsval vp;
if ((PR_TRUE != JS_LookupProperty(jscontext, global, "CSSUnknownRule", &vp)) ||
!JSVAL_IS_OBJECT(vp) ||
((constructor = JSVAL_TO_OBJECT(vp)) == nsnull) ||
(PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) ||
!JSVAL_IS_OBJECT(vp)) {
if (NS_OK != NS_InitCSSRuleClass(aContext, (void **)&parent_proto)) {
return NS_ERROR_FAILURE;
}
proto = JS_InitClass(jscontext, // context
global, // global object
parent_proto, // parent proto
&CSSUnknownRuleClass, // JSClass
CSSUnknownRule, // JSNative ctor
0, // ctor args
CSSUnknownRuleProperties, // proto props
CSSUnknownRuleMethods, // proto funcs
nsnull, // ctor props (static)
nsnull); // ctor funcs (static)
if (nsnull == proto) {
return NS_ERROR_FAILURE;
}
}
else if ((nsnull != constructor) && JSVAL_IS_OBJECT(vp)) {
proto = JSVAL_TO_OBJECT(vp);
}
else {
return NS_ERROR_FAILURE;
}
if (aPrototype) {
*aPrototype = proto;
}
return NS_OK;
}
//
// Method for creating a new CSSUnknownRule JavaScript object
//
extern "C" NS_DOM nsresult NS_NewScriptCSSUnknownRule(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn)
{
NS_PRECONDITION(nsnull != aContext && nsnull != aSupports && nsnull != aReturn, "null argument to NS_NewScriptCSSUnknownRule");
JSObject *proto;
JSObject *parent;
nsIScriptObjectOwner *owner;
JSContext *jscontext = (JSContext *)aContext->GetNativeContext();
nsresult result = NS_OK;
nsIDOMCSSUnknownRule *aCSSUnknownRule;
if (nsnull == aParent) {
parent = nsnull;
}
else if (NS_OK == aParent->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) {
if (NS_OK != owner->GetScriptObject(aContext, (void **)&parent)) {
NS_RELEASE(owner);
return NS_ERROR_FAILURE;
}
NS_RELEASE(owner);
}
else {
return NS_ERROR_FAILURE;
}
if (NS_OK != NS_InitCSSUnknownRuleClass(aContext, (void **)&proto)) {
return NS_ERROR_FAILURE;
}
result = aSupports->QueryInterface(kICSSUnknownRuleIID, (void **)&aCSSUnknownRule);
if (NS_OK != result) {
return result;
}
// create a js object for this class
*aReturn = JS_NewObject(jscontext, &CSSUnknownRuleClass, proto, parent);
if (nsnull != *aReturn) {
// connect the native object to the js object
JS_SetPrivate(jscontext, (JSObject *)*aReturn, aCSSUnknownRule);
}
else {
NS_RELEASE(aCSSUnknownRule);
return NS_ERROR_FAILURE;
}
return NS_OK;
}

View File

@@ -1,7 +1,8 @@
<html>
<head>
<title>Example 0</title>
<style>
<style title="hello" media="screen, print">
:first-letter { color: green; }
a#id.foo:visited:first-line { color: red; }
a#id.foo:first-line { color: red; }
a#id.foo:visited { color: red; }
@@ -13,7 +14,8 @@
a:visited:visited { color: red; }
a:first-line:visited { color: red; }
:active { color: blue; }
:first-letter { color: green; }
P.first:first-line { color: blue; }
P.first:first-letter { color: yellow; }
</style>
</head>
@@ -28,7 +30,7 @@
<p>This is a paragraph with font variations: <b><font face="Arial, Helvetica, sans-serif">Arial,</font></b><font face="Arial, Helvetica, sans-serif">
<i><font face="Verdana, Arial, Helvetica, sans-serif">Verdana</font>,</i> <font face="co">COURIER,
<font face="Times New Roman, Times, serif">Times New Roman.</font></font></font></p>
<p><font size=7>Font size=7, </font><font size=6>Font size=6, </font><font size=5>Font
<p class="first"><font size=7>Font size=7, </font><font size=6>Font size=6, </font><font size=5>Font
size=5, </font><font size=4>Font size=4, </font><font size=3>Font size=3, </font><font size=2>Font
size=2, </font><font size=1>Font size=1, </font><font point-size=24 font-weight=700>Font
point-size=24 font-weight=700</font></p>
@@ -82,6 +84,9 @@
<script>
var r = 0, g = 0, b = 0;
var h = document.documentElement.childNodes[1].childNodes[1];
var sheet = document.styleSheets[0];
var rule = sheet.cssRules[0];
var size = 10;
function changeColor() {
r += 5;
@@ -90,8 +95,14 @@ function changeColor() {
r %= 255;
g %= 255;
b %= 255;
size += 1;
if (size > 48) {
size = 10;
}
h.style.backgroundColor = "rgb(" + r + "," + g + "," + b + ")";
rule.style.color = "rgb(" + r + "," + g + "," + b + ")";
rule.style.fontSize = size + "pt";
}
setInterval(changeColor, 40);

View File

@@ -18,7 +18,20 @@
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table border=4>
<tr>
<td>
<h1>Example 0: Basic HTML Text Styles</h1>
</td>
<td>
more table cell
</td>
</tr>
<tr>
<td>second row</td>
<td>second row</td>
</tr>
</table>
<p><br></p>
<h2>Formatted Text</h2>
<p>This is a basic paragraph with <b>bold</b>, <i>italic</i> and <i>bold-italic
@@ -81,7 +94,7 @@
<p>&nbsp;</p>
<script>
var r = 0, g = 0, b = 0;
var h = document.documentElement.childNodes[1].childNodes[1];
var h = document.documentElement.childNodes[1].childNodes[1].childNodes[0].childNodes[0].childNodes[0].childNodes[1];
h.style.borderStyle = "groove";
function changeColor() {