| Index: Source/core/inspector/InjectedScriptSource.js
|
| diff --git a/Source/core/inspector/InjectedScriptSource.js b/Source/core/inspector/InjectedScriptSource.js
|
| index c525812381befdfbe1d9c2410abee8fef6b81342..08d7cda51fdb9317bbad9b0589d8148886d6cf84 100644
|
| --- a/Source/core/inspector/InjectedScriptSource.js
|
| +++ b/Source/core/inspector/InjectedScriptSource.js
|
| @@ -237,14 +237,14 @@ domAttributesWithObservableSideEffectOnGet["Response"]["body"] = true;
|
|
|
| /**
|
| * @param {!Object} object
|
| - * @param {!string} attribute
|
| + * @param {string} attribute
|
| * @return {boolean}
|
| */
|
| function doesAttributeHaveObservableSideEffectOnGet(object, attribute)
|
| {
|
| for (var interfaceName in domAttributesWithObservableSideEffectOnGet) {
|
| var isInstance = InjectedScriptHost.suppressWarningsAndCallFunction(function(object, interfaceName) {
|
| - return typeof window[interfaceName] === "function" && object instanceof window[interfaceName];
|
| + return /* suppressBlacklist */ typeof inspectedWindow[interfaceName] === "function" && object instanceof inspectedWindow[interfaceName];
|
| }, null, [object, interfaceName]);
|
| if (isInstance) {
|
| return attribute in domAttributesWithObservableSideEffectOnGet[interfaceName];
|
|
|