add new flags; bug 125070, r=adamlock, sr=sfraser, a=roc

This commit is contained in:
brade%netscape.com 2002-02-28 14:09:07 +00:00
Родитель 8c606e85b5
Коммит 15c898c949
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -52,6 +52,10 @@ interface nsIWebBrowserPersist : nsISupports
const unsigned long PERSIST_FLAGS_NO_CONVERSION = 16; const unsigned long PERSIST_FLAGS_NO_CONVERSION = 16;
/** Replace existing files on the disk (use with due diligence!) */ /** Replace existing files on the disk (use with due diligence!) */
const unsigned long PERSIST_FLAGS_REPLACE_EXISTING_FILES = 32; const unsigned long PERSIST_FLAGS_REPLACE_EXISTING_FILES = 32;
/** Don't modify or add base tags */
const unsigned long PERSIST_FLAGS_NO_BASE_TAG_MODIFICATIONS = 64;
/** Make changes to original dom rather than cloning nodes */
const unsigned long PERSIST_FLAGS_FIXUP_ORIGINAL_DOM = 128;
/** Flags governing how data is fetched from the network. */ /** Flags governing how data is fetched from the network. */
attribute unsigned long persistFlags; attribute unsigned long persistFlags;