Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add layout test for 13558.
Canonical link: https://commits.webkit.org/17715@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@21214 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
David Hyatt
committed
May 1, 2007
1 parent
c7654c1
commit 7c081a3
Showing
4 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
LayoutTests/fast/css-generated-content/absolute-position-inside-inline-expected.checksum
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 @@ | ||
537f8f7a54a11d7c6c4db61fe6603460 |
Binary file added
BIN
+5.42 KB
...utTests/fast/css-generated-content/absolute-position-inside-inline-expected.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions
11
LayoutTests/fast/css-generated-content/absolute-position-inside-inline-expected.txt
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,11 @@ | ||
layer at (0,0) size 800x600 | ||
RenderView at (0,0) size 800x600 | ||
layer at (0,0) size 800x34 | ||
RenderBlock {HTML} at (0,0) size 800x34 | ||
RenderBody {BODY} at (8,8) size 784x18 | ||
RenderInline {SPAN} at (0,0) size 85x18 | ||
RenderText {#text} at (0,0) size 85x18 | ||
text run at (0,0) width 85: "Webpage test" | ||
RenderText {#text} at (0,0) size 0x0 | ||
RenderText {#text} at (0,0) size 0x0 | ||
RenderText {#text} at (0,0) size 0x0 |
19 changes: 19 additions & 0 deletions
19
LayoutTests/fast/css-generated-content/absolute-position-inside-inline.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,19 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | ||
<html> | ||
<head> | ||
<title>Crash Test</title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
|
||
<style type="text/css"> | ||
span:after | ||
{ | ||
/* required for crash */ | ||
content: ""; | ||
position: absolute; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<span>Webpage test</span> | ||
</body> | ||
</html> |