-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from seyfert/master
rebaseRelativeTo fixes
- Loading branch information
Showing
13 changed files
with
1,741 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@font-face { | ||
font-family: 'Open Sans'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('open-sans-v13-latin-regular.eot'); | ||
src: url('open-sans-v13-latin-regular.eot?#iefix') format('embedded-opentype'), | ||
url(open-sans-v13-latin-regular.woff2) format('woff2'), | ||
url("open-sans-v13-latin-regular.woff") format('woff'), | ||
url('open-sans-v13-latin-regular.svg#OpenSans') format('svg'); | ||
} | ||
@font-face { | ||
font-family: 'Open Sans'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('open-sans-v13-latin-regular.eot'); | ||
src: url('open-sans-v13-latin-regular.eot?#iefix') format('embedded-opentype'), url(open-sans-v13-latin-regular.woff2) format('woff2'), url("open-sans-v13-latin-regular.woff") format('woff'), url('open-sans-v13-latin-regular.svg#OpenSans') format('svg'); | ||
} |
Binary file not shown.
1,637 changes: 1,637 additions & 0 deletions
1,637
test/cases/assets/fonts/open-sans-v13-latin-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
body { | ||
background: url(icon.png); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>test</title> | ||
<link href="assets/fonts.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
body { | ||
background: url("assets/icon.png"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>test</title> | ||
<style> | ||
@font-face { | ||
font-family: 'Open Sans'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url("assets/fonts/open-sans-v13-latin-regular.eot"); | ||
src: url("assets/fonts/open-sans-v13-latin-regular.eot?#iefix") format('embedded-opentype'), | ||
url("assets/fonts/open-sans-v13-latin-regular.woff2") format('woff2'), | ||
url("assets/fonts/open-sans-v13-latin-regular.woff") format('woff'), | ||
url("assets/fonts/open-sans-v13-latin-regular.svg#OpenSans") format('svg'); | ||
} | ||
@font-face { | ||
font-family: 'Open Sans'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url("assets/fonts/open-sans-v13-latin-regular.eot"); | ||
src: url("assets/fonts/open-sans-v13-latin-regular.eot?#iefix") format('embedded-opentype'), url("assets/fonts/open-sans-v13-latin-regular.woff2") format('woff2'), url("assets/fonts/open-sans-v13-latin-regular.woff") format('woff'), url("assets/fonts/open-sans-v13-latin-regular.svg#OpenSans") format('svg'); | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters