45ab3e0332
This adds a proof-of-concept of `puppeteer-firefox`. This consists of two parts: - `//experimental/juggler` - patches to apply to Firefox. - `//experimental/puppeteer-firefox` - front-end code to be merged with Puppeteer. As things become more stable, we'll gradually move it out of the experimental folder.
26 lines
514 B
HTML
26 lines
514 B
HTML
<style>
|
|
body {
|
|
display: flex;
|
|
}
|
|
|
|
body iframe {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
}
|
|
::-webkit-scrollbar{
|
|
display: none;
|
|
}
|
|
</style>
|
|
<script>
|
|
async function attachFrame(frameId, url) {
|
|
var frame = document.createElement('iframe');
|
|
frame.src = url;
|
|
frame.id = frameId;
|
|
document.body.appendChild(frame);
|
|
await new Promise(x => frame.onload = x);
|
|
return 'kazakh';
|
|
}
|
|
</script>
|
|
<iframe src='./two-frames.html' name='2frames'></iframe>
|
|
<iframe src='./frame.html' name='aframe'></iframe>
|