mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255
This commit is contained in:
parent
b2a5225831
commit
1a81b18b9f
12321 changed files with 544385 additions and 6 deletions
76
tests/wpt/web-platform-tests/dom/nodes/mutationobservers.js
Normal file
76
tests/wpt/web-platform-tests/dom/nodes/mutationobservers.js
Normal file
|
@ -0,0 +1,76 @@
|
|||
// Compares a mutation record to a predefined one
|
||||
// mutationToCheck is a mutation record from the user agent
|
||||
// expectedRecord is a mutation record minted by the test
|
||||
// for expectedRecord, if properties are ommitted, they get default ones
|
||||
function checkRecords(target, mutationToCheck, expectedRecord) {
|
||||
var mr1;
|
||||
var mr2;
|
||||
|
||||
|
||||
function checkField(property, isArray) {
|
||||
var field = mr2[property];
|
||||
if (isArray === undefined) {
|
||||
isArray = false;
|
||||
}
|
||||
if (field instanceof Function) {
|
||||
field = field();
|
||||
} else if (field === undefined) {
|
||||
if (isArray) {
|
||||
field = new Array();
|
||||
} else {
|
||||
field = null;
|
||||
}
|
||||
}
|
||||
if (isArray) {
|
||||
assert_array_equals(mr1[property], field, property + " didn't match");
|
||||
} else {
|
||||
assert_equals(mr1[property], field, property + " didn't match");
|
||||
}
|
||||
}
|
||||
|
||||
assert_equals(mutationToCheck.length, expectedRecord.length, "mutation records must match");
|
||||
for (var item = 0; item < mutationToCheck.length; item++) {
|
||||
mr1 = mutationToCheck[item];
|
||||
mr2 = expectedRecord[item];
|
||||
|
||||
if (mr2.target instanceof Function) {
|
||||
assert_equals(mr1.target, mr2.target(), "target node must match");
|
||||
} else if (mr2.target !== undefined) {
|
||||
assert_equals(mr1.target, mr2.target, "target node must match");
|
||||
} else {
|
||||
assert_equals(mr1.target, target, "target node must match");
|
||||
}
|
||||
|
||||
checkField("type");
|
||||
checkField("addedNodes", true);
|
||||
checkField("removedNodes", true);
|
||||
checkField("previousSibling");
|
||||
checkField("nextSibling");
|
||||
checkField("attributeName");
|
||||
checkField("attributeNamespace");
|
||||
checkField("oldValue");
|
||||
};
|
||||
}
|
||||
|
||||
function runMutationTest(node, mutationObserverOptions, mutationRecordSequence, mutationFunction, description, target) {
|
||||
var test = async_test(description);
|
||||
|
||||
|
||||
function moc(mrl, obs) {
|
||||
test.step(
|
||||
function () {
|
||||
if (target === undefined) target = node;
|
||||
checkRecords(target, mrl, mutationRecordSequence);
|
||||
test.done();
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
test.step(
|
||||
function () {
|
||||
(new MutationObserver(moc)).observe(node, mutationObserverOptions);
|
||||
mutationFunction();
|
||||
}
|
||||
);
|
||||
return mutationRecordSequence.length
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue