e537018e71
Not working: - Web tests (hidden browser is broken) - Test Updated status text - Various platform menu things (code copied from ZP and will use whichever approach we settle on there)
15 lines
386 B
JavaScript
15 lines
386 B
JavaScript
addMessageListener('Scaffold:GetDocument', {
|
|
receiveMessage() {
|
|
dump('received document request\n')
|
|
sendAsyncMessage('Scaffold:Document', {
|
|
html: new XMLSerializer().serializeToString(content.document),
|
|
url: content.location.href
|
|
});
|
|
}
|
|
});
|
|
|
|
function onLoad() {
|
|
sendAsyncMessage('Scaffold:Load', { url: content.location.href });
|
|
}
|
|
|
|
addEventListener('load', onLoad, true);
|