mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
bf85c86c6a
Besides charset, document now records charset source as well. nsCharsetSource was replaced by PRInt32. Some code relocation in nsHTMLDocument.cpp r=yokoyama sr=waterson
18 lines
362 B
Plaintext
18 lines
362 B
Plaintext
#include "nsISupports.idl"
|
|
#include "nsIAtom.idl"
|
|
|
|
// XXX doc me
|
|
// XXX mark the right params "const"
|
|
|
|
[scriptable, uuid(2d40b291-01e1-11d4-9d0e-0050040007b2)]
|
|
interface nsIDocumentCharsetInfo : nsISupports
|
|
{
|
|
attribute nsIAtom forcedCharset;
|
|
|
|
attribute boolean forcedDetector;
|
|
|
|
attribute nsIAtom parentCharset;
|
|
|
|
attribute PRInt32 parentCharsetSource;
|
|
};
|