Index: LayoutTests/fast/dom/Window/resources/window-property-collector.js |
diff --git a/LayoutTests/fast/dom/Window/resources/window-property-collector.js b/LayoutTests/fast/dom/Window/resources/window-property-collector.js |
index 7067772fa8badc36a8689e29bdd03555bdf34ed0..a19048243ffc5f19b8fb8449525476d4fff4c23c 100644 |
--- a/LayoutTests/fast/dom/Window/resources/window-property-collector.js |
+++ b/LayoutTests/fast/dom/Window/resources/window-property-collector.js |
@@ -86,6 +86,9 @@ function collectPropertiesHelper(object, path) |
throw 'Error: probably looping'; |
for (var property in object) { |
+ // Skip internals properties, since they aren't web accessible. |
+ if (property === 'internals') |
+ continue; |
path.push(property); |
var type = typeof(object[property]); |
if (type == "object") { |