diff --git a/mozilla/content/html/content/src/nsHTMLAtoms.cpp b/mozilla/content/html/content/src/nsHTMLAtoms.cpp
index 4347f4982b4..6dea38bda1f 100644
--- a/mozilla/content/html/content/src/nsHTMLAtoms.cpp
+++ b/mozilla/content/html/content/src/nsHTMLAtoms.cpp
@@ -33,6 +33,7 @@ nsIAtom* nsHTMLAtoms::alink;
nsIAtom* nsHTMLAtoms::alt;
nsIAtom* nsHTMLAtoms::applet;
nsIAtom* nsHTMLAtoms::archive;
+nsIAtom* nsHTMLAtoms::area;
nsIAtom* nsHTMLAtoms::axis;
nsIAtom* nsHTMLAtoms::background;
nsIAtom* nsHTMLAtoms::below;
@@ -116,6 +117,7 @@ nsIAtom* nsHTMLAtoms::hreflang;
nsIAtom* nsHTMLAtoms::hspace;
nsIAtom* nsHTMLAtoms::html;
nsIAtom* nsHTMLAtoms::httpEquiv;
+nsIAtom* nsHTMLAtoms::ibPseudo;
nsIAtom* nsHTMLAtoms::id;
nsIAtom* nsHTMLAtoms::iframe;
nsIAtom* nsHTMLAtoms::img;
@@ -268,6 +270,7 @@ void nsHTMLAtoms::AddrefAtoms()
alt = NS_NewAtom("ALT");
applet = NS_NewAtom("APPLET");
archive = NS_NewAtom("ARCHIVE");
+ area = NS_NewAtom("AREA");
axis = NS_NewAtom("AXIS");
background = NS_NewAtom("BACKGROUND");
below = NS_NewAtom("BELOW");
@@ -351,6 +354,7 @@ void nsHTMLAtoms::AddrefAtoms()
hspace = NS_NewAtom("HSPACE");
html = NS_NewAtom("HTML");
httpEquiv = NS_NewAtom("HTTP-EQUIV");
+ ibPseudo = NS_NewAtom(":IB-PSEUDO");
id = NS_NewAtom("ID");
iframe = NS_NewAtom("IFRAME");
img = NS_NewAtom("IMG");
@@ -500,6 +504,7 @@ void nsHTMLAtoms::ReleaseAtoms()
NS_RELEASE(alt);
NS_RELEASE(applet);
NS_RELEASE(archive);
+ NS_RELEASE(area);
NS_RELEASE(axis);
NS_RELEASE(background);
NS_RELEASE(below);
@@ -580,6 +585,7 @@ void nsHTMLAtoms::ReleaseAtoms()
NS_RELEASE(hspace);
NS_RELEASE(html);
NS_RELEASE(httpEquiv);
+ NS_RELEASE(ibPseudo);
NS_RELEASE(id);
NS_RELEASE(iframe);
NS_RELEASE(img);
diff --git a/mozilla/content/html/content/src/nsHTMLAtoms.h b/mozilla/content/html/content/src/nsHTMLAtoms.h
index f87ea10a22e..8bfc9838700 100644
--- a/mozilla/content/html/content/src/nsHTMLAtoms.h
+++ b/mozilla/content/html/content/src/nsHTMLAtoms.h
@@ -52,6 +52,7 @@ public:
static nsIAtom* alt;
static nsIAtom* applet;
static nsIAtom* archive;
+ static nsIAtom* area;
static nsIAtom* axis;
static nsIAtom* background;
@@ -143,6 +144,7 @@ public:
static nsIAtom* html;
static nsIAtom* httpEquiv;
+ static nsIAtom* ibPseudo;
static nsIAtom* id;
static nsIAtom* iframe;
static nsIAtom* img;
diff --git a/mozilla/content/shared/public/nsHTMLAtoms.h b/mozilla/content/shared/public/nsHTMLAtoms.h
index f87ea10a22e..8bfc9838700 100644
--- a/mozilla/content/shared/public/nsHTMLAtoms.h
+++ b/mozilla/content/shared/public/nsHTMLAtoms.h
@@ -52,6 +52,7 @@ public:
static nsIAtom* alt;
static nsIAtom* applet;
static nsIAtom* archive;
+ static nsIAtom* area;
static nsIAtom* axis;
static nsIAtom* background;
@@ -143,6 +144,7 @@ public:
static nsIAtom* html;
static nsIAtom* httpEquiv;
+ static nsIAtom* ibPseudo;
static nsIAtom* id;
static nsIAtom* iframe;
static nsIAtom* img;
diff --git a/mozilla/content/shared/src/nsHTMLAtoms.cpp b/mozilla/content/shared/src/nsHTMLAtoms.cpp
index 4347f4982b4..6dea38bda1f 100644
--- a/mozilla/content/shared/src/nsHTMLAtoms.cpp
+++ b/mozilla/content/shared/src/nsHTMLAtoms.cpp
@@ -33,6 +33,7 @@ nsIAtom* nsHTMLAtoms::alink;
nsIAtom* nsHTMLAtoms::alt;
nsIAtom* nsHTMLAtoms::applet;
nsIAtom* nsHTMLAtoms::archive;
+nsIAtom* nsHTMLAtoms::area;
nsIAtom* nsHTMLAtoms::axis;
nsIAtom* nsHTMLAtoms::background;
nsIAtom* nsHTMLAtoms::below;
@@ -116,6 +117,7 @@ nsIAtom* nsHTMLAtoms::hreflang;
nsIAtom* nsHTMLAtoms::hspace;
nsIAtom* nsHTMLAtoms::html;
nsIAtom* nsHTMLAtoms::httpEquiv;
+nsIAtom* nsHTMLAtoms::ibPseudo;
nsIAtom* nsHTMLAtoms::id;
nsIAtom* nsHTMLAtoms::iframe;
nsIAtom* nsHTMLAtoms::img;
@@ -268,6 +270,7 @@ void nsHTMLAtoms::AddrefAtoms()
alt = NS_NewAtom("ALT");
applet = NS_NewAtom("APPLET");
archive = NS_NewAtom("ARCHIVE");
+ area = NS_NewAtom("AREA");
axis = NS_NewAtom("AXIS");
background = NS_NewAtom("BACKGROUND");
below = NS_NewAtom("BELOW");
@@ -351,6 +354,7 @@ void nsHTMLAtoms::AddrefAtoms()
hspace = NS_NewAtom("HSPACE");
html = NS_NewAtom("HTML");
httpEquiv = NS_NewAtom("HTTP-EQUIV");
+ ibPseudo = NS_NewAtom(":IB-PSEUDO");
id = NS_NewAtom("ID");
iframe = NS_NewAtom("IFRAME");
img = NS_NewAtom("IMG");
@@ -500,6 +504,7 @@ void nsHTMLAtoms::ReleaseAtoms()
NS_RELEASE(alt);
NS_RELEASE(applet);
NS_RELEASE(archive);
+ NS_RELEASE(area);
NS_RELEASE(axis);
NS_RELEASE(background);
NS_RELEASE(below);
@@ -580,6 +585,7 @@ void nsHTMLAtoms::ReleaseAtoms()
NS_RELEASE(hspace);
NS_RELEASE(html);
NS_RELEASE(httpEquiv);
+ NS_RELEASE(ibPseudo);
NS_RELEASE(id);
NS_RELEASE(iframe);
NS_RELEASE(img);
diff --git a/mozilla/layout/html/base/src/nsHTMLAtoms.cpp b/mozilla/layout/html/base/src/nsHTMLAtoms.cpp
index 4347f4982b4..6dea38bda1f 100644
--- a/mozilla/layout/html/base/src/nsHTMLAtoms.cpp
+++ b/mozilla/layout/html/base/src/nsHTMLAtoms.cpp
@@ -33,6 +33,7 @@ nsIAtom* nsHTMLAtoms::alink;
nsIAtom* nsHTMLAtoms::alt;
nsIAtom* nsHTMLAtoms::applet;
nsIAtom* nsHTMLAtoms::archive;
+nsIAtom* nsHTMLAtoms::area;
nsIAtom* nsHTMLAtoms::axis;
nsIAtom* nsHTMLAtoms::background;
nsIAtom* nsHTMLAtoms::below;
@@ -116,6 +117,7 @@ nsIAtom* nsHTMLAtoms::hreflang;
nsIAtom* nsHTMLAtoms::hspace;
nsIAtom* nsHTMLAtoms::html;
nsIAtom* nsHTMLAtoms::httpEquiv;
+nsIAtom* nsHTMLAtoms::ibPseudo;
nsIAtom* nsHTMLAtoms::id;
nsIAtom* nsHTMLAtoms::iframe;
nsIAtom* nsHTMLAtoms::img;
@@ -268,6 +270,7 @@ void nsHTMLAtoms::AddrefAtoms()
alt = NS_NewAtom("ALT");
applet = NS_NewAtom("APPLET");
archive = NS_NewAtom("ARCHIVE");
+ area = NS_NewAtom("AREA");
axis = NS_NewAtom("AXIS");
background = NS_NewAtom("BACKGROUND");
below = NS_NewAtom("BELOW");
@@ -351,6 +354,7 @@ void nsHTMLAtoms::AddrefAtoms()
hspace = NS_NewAtom("HSPACE");
html = NS_NewAtom("HTML");
httpEquiv = NS_NewAtom("HTTP-EQUIV");
+ ibPseudo = NS_NewAtom(":IB-PSEUDO");
id = NS_NewAtom("ID");
iframe = NS_NewAtom("IFRAME");
img = NS_NewAtom("IMG");
@@ -500,6 +504,7 @@ void nsHTMLAtoms::ReleaseAtoms()
NS_RELEASE(alt);
NS_RELEASE(applet);
NS_RELEASE(archive);
+ NS_RELEASE(area);
NS_RELEASE(axis);
NS_RELEASE(background);
NS_RELEASE(below);
@@ -580,6 +585,7 @@ void nsHTMLAtoms::ReleaseAtoms()
NS_RELEASE(hspace);
NS_RELEASE(html);
NS_RELEASE(httpEquiv);
+ NS_RELEASE(ibPseudo);
NS_RELEASE(id);
NS_RELEASE(iframe);
NS_RELEASE(img);
diff --git a/mozilla/layout/html/base/src/nsHTMLAtoms.h b/mozilla/layout/html/base/src/nsHTMLAtoms.h
index f87ea10a22e..8bfc9838700 100644
--- a/mozilla/layout/html/base/src/nsHTMLAtoms.h
+++ b/mozilla/layout/html/base/src/nsHTMLAtoms.h
@@ -52,6 +52,7 @@ public:
static nsIAtom* alt;
static nsIAtom* applet;
static nsIAtom* archive;
+ static nsIAtom* area;
static nsIAtom* axis;
static nsIAtom* background;
@@ -143,6 +144,7 @@ public:
static nsIAtom* html;
static nsIAtom* httpEquiv;
+ static nsIAtom* ibPseudo;
static nsIAtom* id;
static nsIAtom* iframe;
static nsIAtom* img;