mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
24 lines
397 B
HTML
24 lines
397 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span {
|
|
font-size: 300%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
Hello this is some text for testing. Here is a
|
|
<span id="target">
|
|
testword
|
|
</span>
|
|
that we should be able to select by longpressing.
|
|
|
|
To test onselectstart, here is
|
|
<span id="onselectstartfalse" onselectstart="return false;">
|
|
anotherbitoftext
|
|
</span>
|
|
that we should not be able to select.
|
|
</body>
|
|
</html>
|