Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support SVG element #13589

Merged
merged 4 commits into from Oct 7, 2016
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

add empty svg element with sizes test

  • Loading branch information
splav committed Oct 7, 2016
commit 1f0b9ab3b7a6f0c8949fa9a78138a72e66393014
@@ -6270,6 +6270,18 @@
"url": "/_mozilla/mozilla/sslfail.html"
}
],
"mozilla/svg/svg.html": [
{
"path": "mozilla/svg/svg.html",
"references": [
[
"/_mozilla/mozilla/svg/svg_ref.html",
"=="
]
],
"url": "/_mozilla/mozilla/svg/svg.html"
}
],
"mozilla/table_valign_bottom.html": [
{
"path": "mozilla/table_valign_bottom.html",
"url": "/_mozilla/mozilla/sslfail.html"
}
],
"mozilla/svg/svg.html": [
{
"path": "mozilla/svg/svg.html",
"references": [
[
"/_mozilla/mozilla/svg/svg_ref.html",
"=="
]
],
"url": "/_mozilla/mozilla/svg/svg.html"
}
],
"mozilla/table_valign_bottom.html": [
{
"path": "mozilla/table_valign_bottom.html",
@@ -0,0 +1,3 @@
[svg.html]
type: reftest
prefs: [dom.svg.enabled:true]
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>SVG embedded inline</title>
<link rel="match" href="svg_ref.html">
</head>
<body>
top<br>
a
<svg width="100px" height="100px">
</svg>
b<br>
bottom
</body>
</html>
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>SVG embedded inline</title>
<style>
img {
width: 100px;
height: 100px;
}
</style>
</head>
<body>
top<br>
a
<img>
b<br>
bottom
</body>
</html>
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.