mirror of
https://github.com/servo/servo.git
synced 2025-09-20 20:00:13 +01:00
Update web-platform-tests to revision 60220357131c65146444da1f54624d5b54d0975d
This commit is contained in:
parent
c45192614c
commit
775b784f79
2144 changed files with 58115 additions and 29658 deletions
|
@ -45,6 +45,7 @@ A_05_05_03_T01.step(unit(function (ctx) {
|
|||
s.appendChild(input2);
|
||||
|
||||
input1.addEventListener('focusin', A_05_05_03_T01.step_func(function(event) {
|
||||
assert_equals(event.composed, true);
|
||||
assert_equals(event.composedPath().length, 7);
|
||||
assert_equals(event.composedPath()[0].id, 'input1');
|
||||
assert_equals(event.composedPath()[1].id, 'shadow');
|
||||
|
@ -55,6 +56,10 @@ A_05_05_03_T01.step(unit(function (ctx) {
|
|||
assert_equals(event.composedPath()[6], ctx.iframes[0].contentWindow);
|
||||
}), false);
|
||||
|
||||
input1.addEventListener('focusout', A_05_05_03_T01.step_func(function(event) {
|
||||
assert_equals(event.composed, true);
|
||||
}), false);
|
||||
|
||||
input2.addEventListener('focusin', A_05_05_03_T01.step_func(function(event) {
|
||||
assert_equals(event.composedPath().length, 2);
|
||||
assert_equals(event.composedPath()[0].id, 'input2');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue