blob: 7c82977d01cb3991ef6512c652e0fd7adc1688e2 [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="../resources/get-host-info.js"></script>
<style>
#test {
background: red;
background: paint(success) green;
}
</style>
<div id="test"></div>
<script>
if (window.location.origin != get_host_info().AUTHENTICATED_ORIGIN) {
window.location = get_host_info().AUTHENTICATED_ORIGIN + window.location.pathname;
} else {
test(function() {
const GREEN = 'rgb(0, 128, 0)';
const element = document.getElementById('test');
assert_true(window.isSecureContext);
assert_equals(getComputedStyle(element).backgroundColor, GREEN);
});
}
</script>