mirror of
https://github.com/servo/servo.git
synced 2025-08-09 07:25:35 +01:00
Enable Shadow DOM for tests (#34299)
* Enable shadowdom implementation in all tests. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Update test expectations. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
This commit is contained in:
parent
c73e4baca2
commit
910e8dc89f
207 changed files with 4735 additions and 260 deletions
|
@ -1,2 +1,360 @@
|
|||
[tabindex-getter.html]
|
||||
expected: ERROR
|
||||
[input.tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[input.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[input.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[input.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[input[type='hidden'\].tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[input[type='hidden'\].tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[input[type='hidden'\].tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[input[type='hidden'\].tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[button.tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[button.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[button.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[button.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[button[disabled\].tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[button[disabled\].tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[button[disabled\].tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[button[disabled\].tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[button[hidden\].tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[button[hidden\].tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[button[hidden\].tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[button[hidden\].tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[a.tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[a.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[a.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[a.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[a[href\].tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[a[href\].tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[a[href\].tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[a[href\].tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[svg a.tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[svg a.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[svg a.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[svg a.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[textarea.tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[textarea.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[textarea.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[textarea.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[select.tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[select.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[select.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[select.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[select[multiple\].tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[select[multiple\].tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[select[multiple\].tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[select[multiple\].tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[option.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[option.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[option.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[option.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[optgroup.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[optgroup.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[optgroup.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[optgroup.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[iframe.tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[iframe.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[iframe.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[iframe.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[embed.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[embed.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[embed.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[embed.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[object.tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[object.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[object.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[object.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[span.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[span.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[span.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[span.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[div.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[div.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[div.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[div.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[link#nohref.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[link#nohref.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[link#nohref.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[link#nohref.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[link[href\].tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[link[href\].tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[link[href\].tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[link[href\].tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[details.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[details.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[details.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[details.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[summary.tabIndex should return 0 by default]
|
||||
expected: FAIL
|
||||
|
||||
[summary.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[summary.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[summary.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[summary#secondsummary.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[summary#secondsummary.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[summary#secondsummary.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[summary#secondsummary.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[#hostDelegatesFocus.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[#hostDelegatesFocus.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[#hostDelegatesFocus.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[#hostDelegatesFocus.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[#hostNonDelegatesFocus.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[#hostNonDelegatesFocus.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[#hostNonDelegatesFocus.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[#hostNonDelegatesFocus.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[div[contenteditable\].tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[div[contenteditable\].tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[div[contenteditable\].tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[div[contenteditable\].tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[#scrollable.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[#scrollable.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[#scrollable.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[#scrollable.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[fieldset.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[fieldset.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[fieldset.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[fieldset.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[output.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[output.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[output.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[output.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
||||
[slot.tabIndex should return -1 by default]
|
||||
expected: FAIL
|
||||
|
||||
[slot.tabIndex should return -1 when set to -1]
|
||||
expected: FAIL
|
||||
|
||||
[slot.tabIndex should return 0 when set to 0]
|
||||
expected: FAIL
|
||||
|
||||
[slot.tabIndex should return 1 when set to 1]
|
||||
expected: FAIL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue