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.
23 lines
708 B
HTML
23 lines
708 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Scrollable test</title>
|
|
</head>
|
|
<body>
|
|
<script src='mouse-helper.js'></script>
|
|
<script>
|
|
for (let i = 0; i < 100; i++) {
|
|
let button = document.createElement('button');
|
|
button.textContent = i + ': not clicked';
|
|
button.id = 'button-' + i;
|
|
button.onclick = () => button.textContent = 'clicked';
|
|
button.oncontextmenu = event => {
|
|
event.preventDefault();
|
|
button.textContent = 'context menu';
|
|
}
|
|
document.body.appendChild(button);
|
|
document.body.appendChild(document.createElement('br'));
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |