blob: 2559942aeb918825c8dda89a3f2e902d68eb0a2e [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<script src="../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description("This test should run without throwing an exception.");
Object.defineProperty = function() {
throw "User overriden";
};
new ByteLengthQueuingStrategy({highWaterMark:1});
new CountQueuingStrategy({highWaterMark:1});
</script>
<script src="../resources/js-test-post.js"></script>
</body>
</html>