mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
25 lines
315 B
HTML
25 lines
315 B
HTML
<!DOCTYPE>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
#data {
|
|
position : absolute;
|
|
top : 1;
|
|
left : 1;
|
|
}
|
|
|
|
#http {
|
|
position : absolute;
|
|
top : 2;
|
|
left : 1;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img id="data" src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs=">
|
|
<img id="http" src="http://test">
|
|
</body>
|
|
</html>
|