projects
/
framework
/
web
/
webkit-efl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Git init
[framework/web/webkit-efl.git]
/
LayoutTests
/
fast
/
gradients
/
gradient-on-pseudoelement-crash.html
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
body:first-line {
6
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(blue), to(green));
7
}
8
</style>
9
<script type="text/javascript" charset="utf-8">
10
if (window.layoutTestController)
11
layoutTestController.dumpAsText();
12
</script>
13
</head>
14
<body>
15
This test should not crash.
16
</body>
17
</html>