Skip to content

Commit

Permalink
Fix failing test cases.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseppstein committed Apr 7, 2009
1 parent 0a5633a commit 1170d32
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
2 changes: 2 additions & 0 deletions test/configuration_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ def test_parse_and_serialize
sass_dir = "sass"
images_dir = "img"
javascripts_dir = "js"
# To enable relative image paths using the images_url() function:
# http_images_path = :relative
CONFIG

Compass.configuration.parse_string(contents, "test_parse")
Expand Down
35 changes: 17 additions & 18 deletions test/fixtures/stylesheets/blueprint/css/typography.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
body {
line-height: 1.5;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
color: #333333;
font-size: 75%; }

Expand Down Expand Up @@ -31,8 +31,7 @@ h4 {
color: #222222;
font-size: 1.2em;
line-height: 1.25;
margin-bottom: 1.25em;
height: 1.25em; }
margin-bottom: 1.25em; }

h5 {
font-weight: normal;
Expand All @@ -52,15 +51,16 @@ h2 img, h3 img, h4 img, h5 img, h6 img {

p {
margin: 0 0 1.5em; }
p img {
p img.left {
display: inline;
float: left;
margin: 1.5em 1.5em 1.5em 0;
padding: 0; }
p img.right {
display: inline;
float: right;
margin: 1.5em 0 1.5em 1.5em; }
p img.right {
display: inline;
float: right;
margin: 1.5em 0 1.5em 1.5em;
padding: 0; }

a {
text-decoration: underline;
Expand Down Expand Up @@ -102,13 +102,11 @@ address {
del {
color: #666; }

pre, code {
pre {
margin: 1.5em 0;
white-space: pre;
font: 1em 'andale mono', 'lucida console', monospace;
line-height: 1.5; }
white-space: pre; }

tt {
pre, code, tt {
font: 1em 'andale mono', 'lucida console', monospace;
line-height: 1.5; }

Expand Down Expand Up @@ -136,15 +134,16 @@ table {
width: 100%; }

th {
font-weight: bold;
background: #C3D9FF;
padding: 4px 10px 4px 5px; }
font-weight: bold; }

thead th {
background: #c3d9ff; }

td {
th, td, caption {
padding: 4px 10px 4px 5px; }

tr.even td {
background: #E5ECF9; }
background: #e5ecf9; }

tfoot {
font-style: italic; }
Expand Down

0 comments on commit 1170d32

Please sign in to comment.