mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-15 11:13:29 +00:00
Added refresh & setcookie atoms
r=heikki,sr=vidur
This commit is contained in:
parent
9168244d76
commit
b20fb5da2d
@ -218,6 +218,7 @@ HTML_ATOM(prompt, "prompt")
|
||||
HTML_ATOM(radioPseudo, ":-moz-radio")
|
||||
HTML_ATOM(checkPseudo, ":-moz-checkbox")
|
||||
HTML_ATOM(readonly, "readonly")
|
||||
HTML_ATOM(refresh, "refresh")
|
||||
HTML_ATOM(rel, "rel")
|
||||
HTML_ATOM(repeat, "repeat")
|
||||
HTML_ATOM(rev, "rev")
|
||||
@ -233,6 +234,7 @@ HTML_ATOM(scrolling, "scrolling")
|
||||
HTML_ATOM(select, "select")
|
||||
HTML_ATOM(selected, "selected")
|
||||
HTML_ATOM(selectedindex, "selectedindex")
|
||||
HTML_ATOM(setcookie, "set-cookie")
|
||||
HTML_ATOM(shape, "shape")
|
||||
HTML_ATOM(size, "size")
|
||||
HTML_ATOM(spacer, "spacer")
|
||||
|
@ -218,6 +218,7 @@ HTML_ATOM(prompt, "prompt")
|
||||
HTML_ATOM(radioPseudo, ":-moz-radio")
|
||||
HTML_ATOM(checkPseudo, ":-moz-checkbox")
|
||||
HTML_ATOM(readonly, "readonly")
|
||||
HTML_ATOM(refresh, "refresh")
|
||||
HTML_ATOM(rel, "rel")
|
||||
HTML_ATOM(repeat, "repeat")
|
||||
HTML_ATOM(rev, "rev")
|
||||
@ -233,6 +234,7 @@ HTML_ATOM(scrolling, "scrolling")
|
||||
HTML_ATOM(select, "select")
|
||||
HTML_ATOM(selected, "selected")
|
||||
HTML_ATOM(selectedindex, "selectedindex")
|
||||
HTML_ATOM(setcookie, "set-cookie")
|
||||
HTML_ATOM(shape, "shape")
|
||||
HTML_ATOM(size, "size")
|
||||
HTML_ATOM(spacer, "spacer")
|
||||
|
@ -40,6 +40,7 @@ class nsIURI;
|
||||
class nsString;
|
||||
class nsIWebShell;
|
||||
class nsIPresShell;
|
||||
class nsIChannel;
|
||||
|
||||
/**
|
||||
* Additional frame-state bits used by nsBlockFrame
|
||||
@ -381,7 +382,8 @@ extern nsresult NS_NewTableCellFrame(nsIPresShell* aPresShell, nsIFrame** aResul
|
||||
extern nsresult NS_NewHTMLContentSink(nsIHTMLContentSink** aInstancePtrResult,
|
||||
nsIDocument* aDoc,
|
||||
nsIURI* aURL,
|
||||
nsIWebShell* aWebShell);
|
||||
nsIWebShell* aWebShell,
|
||||
nsIChannel* aChannel);
|
||||
extern nsresult NS_NewHTMLFragmentContentSink(nsIHTMLFragmentContentSink** aInstancePtrResult);
|
||||
|
||||
/** Create a new HTML reflow command */
|
||||
|
@ -218,6 +218,7 @@ HTML_ATOM(prompt, "prompt")
|
||||
HTML_ATOM(radioPseudo, ":-moz-radio")
|
||||
HTML_ATOM(checkPseudo, ":-moz-checkbox")
|
||||
HTML_ATOM(readonly, "readonly")
|
||||
HTML_ATOM(refresh, "refresh")
|
||||
HTML_ATOM(rel, "rel")
|
||||
HTML_ATOM(repeat, "repeat")
|
||||
HTML_ATOM(rev, "rev")
|
||||
@ -233,6 +234,7 @@ HTML_ATOM(scrolling, "scrolling")
|
||||
HTML_ATOM(select, "select")
|
||||
HTML_ATOM(selected, "selected")
|
||||
HTML_ATOM(selectedindex, "selectedindex")
|
||||
HTML_ATOM(setcookie, "set-cookie")
|
||||
HTML_ATOM(shape, "shape")
|
||||
HTML_ATOM(size, "size")
|
||||
HTML_ATOM(spacer, "spacer")
|
||||
|
@ -40,6 +40,7 @@ class nsIURI;
|
||||
class nsString;
|
||||
class nsIWebShell;
|
||||
class nsIPresShell;
|
||||
class nsIChannel;
|
||||
|
||||
/**
|
||||
* Additional frame-state bits used by nsBlockFrame
|
||||
@ -381,7 +382,8 @@ extern nsresult NS_NewTableCellFrame(nsIPresShell* aPresShell, nsIFrame** aResul
|
||||
extern nsresult NS_NewHTMLContentSink(nsIHTMLContentSink** aInstancePtrResult,
|
||||
nsIDocument* aDoc,
|
||||
nsIURI* aURL,
|
||||
nsIWebShell* aWebShell);
|
||||
nsIWebShell* aWebShell,
|
||||
nsIChannel* aChannel);
|
||||
extern nsresult NS_NewHTMLFragmentContentSink(nsIHTMLFragmentContentSink** aInstancePtrResult);
|
||||
|
||||
/** Create a new HTML reflow command */
|
||||
|
Loading…
Reference in New Issue
Block a user