mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9b5dc10c32
--HG-- rename : js/src/ipc/CPOWTypes.h => js/ipc/CPOWTypes.h rename : js/src/ipc/ContextWrapperChild.h => js/ipc/ContextWrapperChild.h rename : js/src/ipc/ContextWrapperParent.h => js/ipc/ContextWrapperParent.h rename : js/src/ipc/Makefile.in => js/ipc/Makefile.in rename : js/src/ipc/ObjectWrapperChild.cpp => js/ipc/ObjectWrapperChild.cpp rename : js/src/ipc/ObjectWrapperChild.h => js/ipc/ObjectWrapperChild.h rename : js/src/ipc/ObjectWrapperParent.cpp => js/ipc/ObjectWrapperParent.cpp rename : js/src/ipc/ObjectWrapperParent.h => js/ipc/ObjectWrapperParent.h rename : js/src/ipc/PContextWrapper.ipdl => js/ipc/PContextWrapper.ipdl rename : js/src/ipc/PObjectWrapper.ipdl => js/ipc/PObjectWrapper.ipdl rename : js/src/ipc/ipdl.mk => js/ipc/ipdl.mk rename : js/src/ipc/jar.mn => js/ipc/jar.mn rename : js/src/ipc/tests/Makefile.in => js/ipc/tests/Makefile.in rename : js/src/ipc/tests/adhoc/child.html => js/ipc/tests/adhoc/child.html rename : js/src/ipc/tests/adhoc/test.xul => js/ipc/tests/adhoc/test.xul rename : js/src/ipc/tests/unit/cpow_child.js => js/ipc/tests/unit/cpow_child.js rename : js/src/ipc/tests/unit/test_cpow.js => js/ipc/tests/unit/test_cpow.js
31 lines
654 B
HTML
31 lines
654 B
HTML
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
window.foo = {
|
|
a: 42,
|
|
b: 37 * 73,
|
|
ctor: function(name, value) {
|
|
this[name] = value;
|
|
},
|
|
fakector: function(name, value) {
|
|
window[name] = "oyez";
|
|
this[name] = value;
|
|
return window;
|
|
},
|
|
f: function(x) {
|
|
document.body.appendChild(document.createElement("div")).innerHTML =
|
|
"called f(" + x + ")";
|
|
return x + Math.PI;
|
|
},
|
|
pitch: function(ball) {
|
|
throw ball;
|
|
}
|
|
};
|
|
window.foo.self = window.foo;
|
|
</script>
|
|
oyez
|
|
</body>
|
|
</html>
|