Revision 90df068fa92f00e3423317e966405271cc23a787 authored by Alex Vallée on 31 October 2017, 15:58:07 UTC, committed by Chromium WPT Sync on 31 October 2017, 15:58:07 UTC
Check that the correct value of activeElement in an iframe after losing
focus in the parent frame.

The behaviour is wrong in Chrome + OOPIF.

BUG=755023

Change-Id: I30b3cdce0842115ba9e8249181bf25eb84bb8214
1 parent 58b7239
Raw File
invoke_with_timing_attributes.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>exception test of performance.mark and performance.measure</title>
    <meta rel="help" href="https://w3c.github.io/user-timing/#extensions-performance-interface"/>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="resources/webperftestharness.js"></script>
  </head>
  <body>
    <h1>Description</h1>
    <p>This test validates exception scenarios of invoking mark() and measure() with timing attributes as value.</p>
    <div id="log"></div>
    <script>
function emit_test(attrName) {
    test(function() {
        assert_throws("SyntaxError", function() { window.performance.mark(attrName); });
    }, "performance.mark should throw if used with timing attribute " + attrName);
}
for (var i in timingAttributes) {
  emit_test(timingAttributes[i]);
}

function emit_test2(attrName) {
    test(function() {
        assert_throws("SyntaxError", function() { window.performance.measure(attrName); });
    }, "performance.measure should throw if used with timing attribute " + attrName);
}
for (var i in timingAttributes) {
  emit_test2(timingAttributes[i]);
}
    </script>
  </body>
</html>
back to top