blob: 8b5aa5bfa9fe567192144f6d7bc9ec8320b3d2a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0"?>
<bindings id="xbltestBindings" xmlns="http://www.mozilla.org/xbl">
<binding id="xbltest">
<content>PASS</content>
<implementation>
<constructor>
var win = XPCNativeWrapper.unwrap(window);
var SpecialPowers = win.SpecialPowers;
var is = win.is;
var todo_is = win.todo_is;
var ok = win.ok;
var legacyMozPrefixedInterfaces = win.legacyMozPrefixedInterfaces;
var createInterfaceMap = win.createInterfaceMap;
eval(win.runTest.toString());
runTest(true);
win.SimpleTest.finish();
</constructor>
</implementation>
</binding>
</bindings>
|