blob: c1ad72c30bf2d6468cec51165435d246d7624bb8 (
plain)
1
2
3
4
5
6
7
8
9
|
<!doctype html>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
promise_test(async t => {
let label = await navigator.cookieDeprecationLabel.getValue();
assert_equals(label, 'label_test');
}, 'Test navigator.cookieDeprecationLabel.getValue()');
</script>
|