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_without_parameter.html
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>exception test of performance.mark and performance.measure</title>
        <link rel="author" title="Intel" href="http://www.intel.com/" />
        <link 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() without parameter.</p>
        <div id="log"></div>
        <script>
test(function () {
    assert_throws(new TypeError(), function () { window.performance.mark() });
}, "window.performance.mark() throws a TypeError exception when invoke without a parameter.");

test(function () {
    assert_throws(new TypeError(), function () { window.performance.measure(); });
}, "window.performance.measure() throws a TypeError exception when invoke without a parameter.");
        </script>
    </body>
</html>
back to top