blob: fd788f5e14c3025a20359e27c1e616a49f4d3fd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<style>
#plugin {
width: 150px;
height: 150px;
-webkit-box-reflect: below 20px;
}
</style>
</head>
<body>
<!-- You should see a blue triangle on green background and its reflection -->
<embed id="plugin" type="application/x-webkit-test-webplugin" primitive="triangle" background-color="green" primitive-color="blue">
</body>
</html>
|