mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1121099. Make <basefont> be an HTMLElement to match my reading of the spec and Chrome. r=sicking
This commit is contained in:
parent
9ba418238a
commit
df11a255f3
@ -46,7 +46,7 @@ HTML_HTMLELEMENT_TAG(aside)
|
||||
HTML_TAG(audio, Audio)
|
||||
HTML_HTMLELEMENT_TAG(b)
|
||||
HTML_TAG(base, Shared)
|
||||
HTML_TAG(basefont, Span)
|
||||
HTML_HTMLELEMENT_TAG(basefont)
|
||||
HTML_HTMLELEMENT_TAG(bdo)
|
||||
HTML_TAG(bgsound, Unknown)
|
||||
HTML_HTMLELEMENT_TAG(big)
|
||||
|
@ -744,12 +744,6 @@
|
||||
[Stringification of document.createElement("rb")]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLUnknownElement must be primary interface of document.createElement("basefont")]
|
||||
expected: FAIL
|
||||
|
||||
[Stringification of document.createElement("basefont")]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLHtmlElement interface: existence and properties of interface object]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -1,8 +1,5 @@
|
||||
[interfaces.html]
|
||||
type: testharness
|
||||
[Interfaces for basefont]
|
||||
expected: FAIL
|
||||
|
||||
[Interfaces for image]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -3239,6 +3239,7 @@ window.onload = function() {
|
||||
'document.createElement("wbr")',
|
||||
'document.createElement("summary")',
|
||||
'document.createElement("acronym")',
|
||||
'document.createElement("basefont")',
|
||||
],
|
||||
HTMLUnknownElement: [
|
||||
'document.createElement("quasit")',
|
||||
@ -3248,7 +3249,6 @@ window.onload = function() {
|
||||
'document.createElement("nextid")',
|
||||
'document.createElement("rb")',
|
||||
'document.createElement("spacer")',
|
||||
'document.createElement("basefont")',
|
||||
'document.createElement("directory")',
|
||||
'document.createElement("mod")',
|
||||
],
|
||||
|
@ -6,7 +6,7 @@ var elements = [
|
||||
["audio", "Audio"],
|
||||
["b", ""],
|
||||
["base", "Base"],
|
||||
["basefont", "Unknown"],
|
||||
["basefont", ""],
|
||||
["bdo", ""],
|
||||
["bgsound", "Unknown"],
|
||||
["big", ""],
|
||||
|
Loading…
Reference in New Issue
Block a user