https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a802b1049167b8449b0ceefae4d2ec353c2ae122 authored by Kenichi Ishibashi on 27 March 2018, 03:21:32 UTC
service_worker: Add tests for navigation timing
Tip revision: a802b10
mutationobservers.js
// 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 omitted, 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
}
back to top