From 15c898c949eeae6cc60c3b53e361814ac8801e37 Mon Sep 17 00:00:00 2001 From: "brade%netscape.com" Date: Thu, 28 Feb 2002 14:09:07 +0000 Subject: [PATCH] add new flags; bug 125070, r=adamlock, sr=sfraser, a=roc --- .../webbrowserpersist/public/nsIWebBrowserPersist.idl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/embedding/components/webbrowserpersist/public/nsIWebBrowserPersist.idl b/embedding/components/webbrowserpersist/public/nsIWebBrowserPersist.idl index 2cce591413db..5d17230bcefa 100644 --- a/embedding/components/webbrowserpersist/public/nsIWebBrowserPersist.idl +++ b/embedding/components/webbrowserpersist/public/nsIWebBrowserPersist.idl @@ -52,6 +52,10 @@ interface nsIWebBrowserPersist : nsISupports const unsigned long PERSIST_FLAGS_NO_CONVERSION = 16; /** Replace existing files on the disk (use with due diligence!) */ 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. */ attribute unsigned long persistFlags;