Skip to content
This repository has been archived by the owner on Jun 1, 2018. It is now read-only.

Commit

Permalink
Merge pull request #21 from stavila/gh-pages
Browse files Browse the repository at this point in the history
Renamed region-overflow to region-fragment
  • Loading branch information
mibalan committed Jun 11, 2013
2 parents 3f27d33 + 6cb5d57 commit 3a35675
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utilities/css-regions-support-matrix/assets/js/testregions.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ $(function () {
equal($region.css("flow-from"), "article", "Correct parsing for flow-from CSS property");
})

test("CSS region-overflow", function() {
equal($region.css("region-overflow"), "auto", "Initial default value for region-overflow");
test("CSS region-fragment", function() {
equal($region.css("region-fragment"), "auto", "Initial default value for region-fragment");

$region.css("region-overflow", "break");
equal($region.css("region-overflow"), "break", "Correct parsing for region-overflow CSS property");
$region.css("region-fragment", "break");
equal($region.css("region-fragment"), "break", "Correct parsing for region-fragment CSS property");
})

test("CSS regions auto-size", function() {
Expand Down

0 comments on commit 3a35675

Please sign in to comment.