blob: 2f9ec978a55a617c500859f7dbc3c698fc038769 [file] [log] [blame]
<!doctype html>
<title>NOT invoking resource selection by inserting into a document</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
test(function(t) {
var v = document.createElement('video');
document.body.appendChild(v);
assert_equals(v.networkState, v.NETWORK_EMPTY);
});
</script>