Revision 4038be686e4912ac1779f73f9fca8d9cbfbb1ec0 authored by Ovidio Henriquez on 07 March 2018, 21:13:41 UTC, committed by Blink WPT Bot on 08 March 2018, 10:10:32 UTC
This change refactors the Web Bluetooth test API to use the
DeviceUUIDs helper class defined in BluetoothDevice. Additionally,
this change finishes the implementation of SimulateGATTServicesChanged,
and as a result, tests are updated to set the next discovery response
before calling this interface.

BUG=719826

Change-Id: I0f986eb7afe6fbf7ebaa80ac4b633d46a027b80d
Reviewed-on: https://chromium-review.googlesource.com/939984
Commit-Queue: Ovidio Henriquez <odejesush@chromium.org>
Reviewed-by: Giovanni Ortuño Urquidi <ortuno@chromium.org>
Cr-Commit-Position: refs/heads/master@{#541577}
1 parent 08d063d
Raw File
Node-prototype-cloneNode.html
<!DOCTYPE html>
<html>
<head>
<title>DOM: cloneNode(deep)</title>
<meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org">
<meta name="assert" content="If context object is a shadow root, then it must throw a NotSupportedError.">
<link rel="help" href="https://dom.spec.whatwg.org/#dom-node-clonenode">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>

function testCloneNode(mode) {
    test(function () {
        assert_throws({'name': 'NotSupportedError'}, function () {
            var element = document.createElement('div');
            var shadowRoot = element.attachShadow({mode: mode});
            shadowRoot.cloneNode(false);
        }, 'cloneNode(false) on a shadow root in ' + mode + ' mode must throw a NotSupportedError');

        assert_throws({'name': 'NotSupportedError'}, function () {
            var element = document.createElement('div');
            var shadowRoot = element.attachShadow({mode: mode});
            shadowRoot.cloneNode(false);
        }, 'cloneNode(true) on a closed shadow root must throw a NotSupportedError');

    }, 'cloneNode on a shadow root in ' + mode + ' mode must throw a NotSupportedError');
}

testCloneNode('open');
testCloneNode('closed');

test(function () {
    var element = document.createElement('div');
    var shadowRoot = element.attachShadow({mode: 'open'});

    assert_equals(element.cloneNode(false).shadowRoot, null, 'cloneNode(false) on an element with an open shadow root should not clone its shadow root');
    assert_equals(element.cloneNode(true).shadowRoot, null, 'cloneNode(true) on an element with an open shadow root should not clone its shadow root');
}, 'cloneNode on an element with an open shadow root should not clone its shadow root');

test(function () {
    var element = document.createElement('div');
    var shadowRoot = element.attachShadow({mode: 'closed'});

    assert_true(element.cloneNode(false).attachShadow({mode: 'closed'}) instanceof ShadowRoot,
        'An element returned by cloneNode(false) on an element with a closed shadow root should allow attachShadow');

    assert_true(element.cloneNode(true).attachShadow({mode: 'closed'}) instanceof ShadowRoot,
        'An element returned by cloneNode(true) on an element with a closed shadow root should allow attachShadow');

}, 'cloneNode on an element with a closed shadow root should not clone its shadow root');

</script>
</body>
</html>
back to top