| Index: webkit/glue/dom_serializer_unittest.cc
|
| ===================================================================
|
| --- webkit/glue/dom_serializer_unittest.cc (revision 57208)
|
| +++ webkit/glue/dom_serializer_unittest.cc (working copy)
|
| @@ -647,7 +647,7 @@
|
| WebDocument doc = web_frame->document();
|
| ASSERT_TRUE(doc.isHTMLDocument());
|
| WebElement body_element = doc.body();
|
| - // Unescaped string for "%⊅&supl;'".
|
| + // Unescaped string for "%⊅¹'".
|
| static const wchar_t parsed_value[] = {
|
| '%', 0x2285, 0x00b9, '\'', 0
|
| };
|
| @@ -664,7 +664,7 @@
|
| // Confirm that the serialized string has no non-standard HTML entities.
|
| ASSERT_EQ(std::string::npos, serialized_contents.find("%"));
|
| ASSERT_EQ(std::string::npos, serialized_contents.find("⊅"));
|
| - ASSERT_EQ(std::string::npos, serialized_contents.find("&supl;"));
|
| + ASSERT_EQ(std::string::npos, serialized_contents.find("¹"));
|
| ASSERT_EQ(std::string::npos, serialized_contents.find("'"));
|
| }
|
|
|
|
|