mirror of
https://github.com/servo/servo.git
synced 2025-08-09 15:35:34 +01:00
Handle exceptions during upgrades
This commit is contained in:
parent
6d9d4add61
commit
e700006fb2
18 changed files with 71 additions and 156 deletions
|
@ -1,8 +0,0 @@
|
|||
[custom-element-reaction-queue.html]
|
||||
type: testharness
|
||||
[Upgrading a custom element must invoke attributeChangedCallback and connectedCallback before start upgrading another element]
|
||||
expected: FAIL
|
||||
|
||||
[Mutating a undefined custom element while upgrading a custom element must not enqueue or invoke reactions on the mutated element]
|
||||
expected: FAIL
|
||||
|
|
@ -3,15 +3,3 @@
|
|||
[execCommand on Document must enqueue a disconnected reaction when deleting a custom element from a contenteditable element]
|
||||
expected: FAIL
|
||||
|
||||
[body on Document must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[open on Document must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[write on Document must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[writeln on Document must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -12,18 +12,6 @@
|
|||
[setAttributeNodeNS on Element must enqueue an attributeChanged reaction when replacing an existing attribute]
|
||||
expected: FAIL
|
||||
|
||||
[innerHTML on Element must enqueue a connected reaction for a newly constructed custom element]
|
||||
expected: FAIL
|
||||
|
||||
[innerHTML on Element must enqueue a attributeChanged reaction for a newly constructed custom element]
|
||||
expected: FAIL
|
||||
|
||||
[outerHTML on Element must enqueue a connected reaction for a newly constructed custom element]
|
||||
expected: FAIL
|
||||
|
||||
[outerHTML on Element must enqueue a attributeChanged reaction for a newly constructed custom element]
|
||||
expected: FAIL
|
||||
|
||||
[insertAdjacentHTML on Element must enqueue a connected reaction for a newly constructed custom element]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
[HTMLAnchorElement.html]
|
||||
type: testharness
|
||||
[text on HTMLAnchorElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[HTMLOptionElement.html]
|
||||
type: testharness
|
||||
[text on HTMLOptionElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
|
@ -3,30 +3,9 @@
|
|||
[caption on HTMLTableElement must enqueue connectedCallback when inserting a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[caption on HTMLTableElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[deleteCaption() on HTMLTableElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[tHead on HTMLTableElement must enqueue connectedCallback when inserting a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[tHead on HTMLTableElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[deleteTHead() on HTMLTableElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[tFoot on HTMLTableElement must enqueue connectedCallback when inserting a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[tFoot on HTMLTableElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[deleteTFoot() on HTMLTableElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[deleteRow() on HTMLTableElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
[HTMLTableRowElement.html]
|
||||
type: testharness
|
||||
[deleteCell() on HTMLTableRowElement must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
[HTMLTableSectionElement.html]
|
||||
type: testharness
|
||||
[deleteRow() on HTMLTableSectionElement on thead must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
||||
[deleteRow() on HTMLTableSectionElement on tfoot must enqueue disconnectedCallback when removing a custom element]
|
||||
expected: FAIL
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
[Node.html]
|
||||
type: testharness
|
||||
[cloneNode on Node must enqueue an attributeChanged reaction when cloning an element with an observed attribute]
|
||||
expected: FAIL
|
||||
|
||||
[cloneNode on Node must enqueue an attributeChanged reaction when cloning an element only for observed attributes]
|
||||
expected: FAIL
|
||||
|
|
@ -1,11 +1,5 @@
|
|||
[Range.html]
|
||||
type: testharness
|
||||
[cloneContents on Range must enqueue an attributeChanged reaction when cloning an element with an observed attribute]
|
||||
expected: FAIL
|
||||
|
||||
[cloneContents on Range must enqueue an attributeChanged reaction when cloning an element only for observed attributes]
|
||||
expected: FAIL
|
||||
|
||||
[createContextualFragment on Range must construct a custom element]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,14 +1,5 @@
|
|||
[Node-cloneNode.html]
|
||||
type: testharness
|
||||
[HTMLElement constructor must throw an InvalidStateError when the top of the construction stack is marked AlreadyConstructed due to a custom element constructor constructing itself after super() call]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLElement constructor must throw an InvalidStateError when the top of the construction stack is marked AlreadyConstructed due to a custom element constructor constructing itself before super() call]
|
||||
expected: FAIL
|
||||
|
||||
[Upgrading a custom element must throw InvalidStateError when the custom element's constructor returns another element]
|
||||
expected: FAIL
|
||||
|
||||
[Inserting an element must not try to upgrade a custom element when it had already failed to upgrade once]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
[upgrading-enqueue-reactions.html]
|
||||
type: testharness
|
||||
[Upgrading a custom element must enqueue attributeChangedCallback on each attribute]
|
||||
expected: FAIL
|
||||
|
||||
[Upgrading a custom element not must enqueue attributeChangedCallback on unobserved attributes]
|
||||
expected: FAIL
|
||||
|
||||
[Upgrading a custom element must enqueue connectedCallback if the element in the document]
|
||||
expected: FAIL
|
||||
|
||||
[Upgrading a custom element must enqueue attributeChangedCallback before connectedCallback]
|
||||
expected: FAIL
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
[upgrading-parser-created-element.html]
|
||||
type: testharness
|
||||
[HTMLElement constructor must throw an InvalidStateError when the top of the construction stack is marked AlreadyConstructed due to a custom element constructor constructing itself after super() call]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLElement constructor must throw an InvalidStateError when the top of the construction stack is marked AlreadyConstructed due to a custom element constructor constructing itself before super() call]
|
||||
expected: FAIL
|
||||
|
||||
[Upgrading a custom element must throw an InvalidStateError when the returned element is not SameValue as the upgraded element]
|
||||
expected: FAIL
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue