Index: LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html |
diff --git a/LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html b/LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html |
index 73d520deef1ac62b1d3ee8dda293a5274f75f04c..52cbac308a1020f82e8e25df23e81d38e23977cc 100644 |
--- a/LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html |
+++ b/LayoutTests/fast/serviceworker/serviceworkercontainer-interface.html |
@@ -17,8 +17,10 @@ test(function() { |
assert_throws(null, function() { ServiceWorkerContainer(); }, |
'the constructor should not be callable'); |
- var descriptor = getPropertyDescriptor('waiting'); |
- assert_false(descriptor.configurable, |
- 'the waiting property should be Unforgeable'); |
+ ['active', 'waiting', 'installing', 'controller'].forEach(function(property) { |
+ var descriptor = getPropertyDescriptor(property); |
+ assert_false(descriptor.configurable, |
+ 'the ' + property + ' property should be Unforgeable'); |
+ }); |
}, 'ServiceWorkerContainer interface'); |
</script> |