mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 512173 Removing some unused references to the message-icon class r=dao
This commit is contained in:
parent
9fc5cf1063
commit
d4cc04da3f
@ -58,7 +58,6 @@ static const char kPromptURL[] = "chrome://global/content/commonDialog.xul";
|
||||
static const char kSelectPromptURL[] = "chrome://global/content/selectDialog.xul";
|
||||
static const char kQuestionIconClass[] = "question-icon";
|
||||
static const char kAlertIconClass[] = "alert-icon";
|
||||
static const char kWarningIconClass[] = "message-icon";
|
||||
// We include question-icon for backwards compatibility
|
||||
static const char kAuthenticationIconClass[] = "authentication-icon question-icon";
|
||||
|
||||
|
@ -166,9 +166,8 @@ function commonDialogOnLoad()
|
||||
// set the icon
|
||||
var iconElement = document.getElementById("info.icon");
|
||||
var iconClass = gCommonDialogParam.GetString(2);
|
||||
if (!iconClass)
|
||||
iconClass = "message-icon";
|
||||
iconElement.setAttribute("class", iconElement.getAttribute("class") + " " + iconClass);
|
||||
if (iconClass)
|
||||
iconElement.classList.add(iconClass);
|
||||
|
||||
switch (nButtons) {
|
||||
case 4:
|
||||
|
Loading…
Reference in New Issue
Block a user