blob: 4e7db8c5f91839e36a0f0446524f6282db154139 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"use strict";
/* globals exportFunction */
Object.defineProperty(window.wrappedJSObject, "isTestFeatureSupported", {
get: exportFunction(function() {
return true;
}, window),
set: exportFunction(function() {}, window),
});
|