Skip to content

Commit

Permalink
Add more test codes for border-style. And remove a file for same test
Browse files Browse the repository at this point in the history
  • Loading branch information
sammykim committed Sep 10, 2013
1 parent 160753e commit f96a0ac
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 30 deletions.
4 changes: 0 additions & 4 deletions src/test/html/test-border.css

This file was deleted.

11 changes: 0 additions & 11 deletions src/test/html/test-border.html

This file was deleted.

15 changes: 0 additions & 15 deletions src/test/html/test_asymmetric_border_color.html

This file was deleted.

41 changes: 41 additions & 0 deletions src/test/html/test_border.html
@@ -0,0 +1,41 @@
<html>
<head>
<style>
#none{
border-style: none;
border-width: 10px;
border-color: green red yellow black;
}
#hidden{
border-style: hidden;
border-width: 10px;
border-color: green red yellow black;
}
#solid{
border-style: solid;
border-width: 10px;
border-color: yellow green red black;
}
#dashed{
border-style: dashed;
border-width: 10px;
border-color: green yellow black red;
}
#dotted{
border-style: dotted;
border-width: 10px;
border-color: green red yellow black;
}
</style>
</head>
<body>
<div id="none"> none test.</div>
<div id="hidden"> hidden test.</div>
<!-- It doesn't work well yet. -->
<div id="solid"> solid test</div>
<!-- It shows almost same result with firefox. -->
<div id="dashed"> dashed test</div>
<!-- It doesn't show anything yet. -->
<div id="dotted"> dotted test. (dotted isn't supported yet)</div>
</body>
</HTML>

5 comments on commit f96a0ac

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from metajack
at sammykim@f96a0ac

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging sammykim/servo/border-style = f96a0ac into auto

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sammykim/servo/border-style = f96a0ac merged ok, testing candidate = 2d55630

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 2d55630

Please sign in to comment.