Skip to content

Commit

Permalink
Update content tests for Document#characterSet
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-daniels committed Dec 5, 2014
1 parent e2e5536 commit 2bd1269
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tests/content/test_document_characterSet.html
Expand Up @@ -6,13 +6,13 @@
<script>
// test1: characterSet
{
is(document.characterSet, "utf-8", "test1-0, characterSet");
is(document.characterSet, "UTF-8", "test1-0, characterSet");

var xmldoc = new Document;
is(xmldoc.characterSet, "utf-8", "test2-1, characterSet");
is(xmldoc.characterSet, "UTF-8", "test2-1, characterSet");

var htmldoc = document.implementation.createHTMLDocument("title");
is(htmldoc.characterSet, "utf-8", "test2-2, characterSet");
is(htmldoc.characterSet, "UTF-8", "test2-2, characterSet");
}
</script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion tests/content/test_document_characterSet_default.html
Expand Up @@ -6,7 +6,7 @@
// test1: default characterSet
{
// FIXME: https://github.com/mozilla-servo/libhubbub/issues/5
is(document.characterSet, "utf-8", "test1-0, default characterSet");
is(document.characterSet, "UTF-8", "test1-0, default characterSet");
}
</script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion tests/content/test_document_characterSet_invalid.html
Expand Up @@ -6,7 +6,7 @@
<script>
// test1: unknown charset
{
is(document.characterSet, "utf-8", "test1-0, unknown charset");
is(document.characterSet, "UTF-8", "test1-0, unknown charset");
}
</script>
</head>
Expand Down

5 comments on commit 2bd1269

@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 Ms2ger
at thomas-daniels@2bd1269

@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 ProgramFOX/servo/issue-4251 = 2bd1269 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.

ProgramFOX/servo/issue-4251 = 2bd1269 merged ok, testing candidate = b805e74

@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 = b805e74

Please sign in to comment.