mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
15 lines
431 B
HTML
15 lines
431 B
HTML
<?xml version="1.0" encoding="utf-8"?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Scrolling during selection drag and drop to iframe</title>
|
|
<style type="text/css">
|
|
iframe
|
|
{width:350px;
|
|
height:150px;}
|
|
</style>
|
|
</head>
|
|
<body onload="window.getSelection().selectAllChildren(document.querySelector('p'))">
|
|
<p>Drag me</p>
|
|
<p><iframe src="helper-scroll-then-drop-input.xhtml">XHTML document</iframe></p>
|
|
</body>
|
|
</html> |