mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision c2e5b9fbaa17424f05ca2bb04609790a3b61d5c2
This commit is contained in:
parent
db7bb2a510
commit
f2c1b70e4a
138 changed files with 2799 additions and 851 deletions
|
@ -44,6 +44,7 @@ test(() => {
|
|||
const event = new SpeechSynthesisEvent("type", {utterance: utterance});
|
||||
assert_equals(event.utterance, utterance);
|
||||
assert_equals(event.charIndex, 0);
|
||||
assert_equals(event.charLength, 0);
|
||||
assert_equals(event.elapsedTime, 0);
|
||||
assert_equals(event.name, "");
|
||||
}, "SpeechSynthesisEvent with eventInitDict having an utterance");
|
||||
|
@ -53,6 +54,7 @@ test(() => {
|
|||
const event = new SpeechSynthesisEvent("type", {
|
||||
utterance: utterance,
|
||||
charIndex: 5,
|
||||
charLength: 3,
|
||||
elapsedTime: 100,
|
||||
name: "foo"
|
||||
});
|
||||
|
@ -61,6 +63,7 @@ test(() => {
|
|||
assert_equals(event.type, "type");
|
||||
assert_equals(event.utterance, utterance);
|
||||
assert_equals(event.charIndex, 5);
|
||||
assert_equals(event.charLength, 3);
|
||||
assert_equals(event.elapsedTime, 100);
|
||||
assert_equals(event.name, "foo");
|
||||
}, "SpeechSynthesisEvent with custom eventInitDict");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue