Index: LayoutTests/media/track/track-webvtt-tc022-entities.html |
diff --git a/LayoutTests/media/track/track-webvtt-tc022-entities.html b/LayoutTests/media/track/track-webvtt-tc022-entities.html |
index f9706158a64e02fd71df5fefea9cd594a392cac4..b8e5b13b9af425ef163b4d31d09b58bf4a86e9d0 100644 |
--- a/LayoutTests/media/track/track-webvtt-tc022-entities.html |
+++ b/LayoutTests/media/track/track-webvtt-tc022-entities.html |
@@ -24,14 +24,17 @@ |
findMediaElement(); |
var expected = |
{ |
- length : 3, |
+ length : 6, |
tests: |
[ |
{ |
property : "getCueAsHTML().textContent", |
values : ["This cue has an amp & character.", |
"This cue has a less than < character.", |
- "This cue has a greater than > character."], |
+ "This cue has a greater than > character.", |
+ "This cue has a Left-to-Right Mark \u200e.", |
+ "This cue has a Right-to-Left Mark \u200f.", |
+ "This cue has a non-breaking space \u00a0."], |
}, |
], |
}; |
@@ -63,10 +66,10 @@ |
</script> |
</head> |
<body onload="enableAllTextTracks()"> |
- <p>Tests special characters &, <, and > in the cue text.</p> |
+ <p>Tests entities in the cue text.</p> |
<video> |
<track src="captions-webvtt/tc022-entities.vtt" onload="trackLoaded()"> |
<track src="captions-webvtt/tc022-entities-wrong.vtt" onload="trackLoaded()"> |
</video> |
</body> |
-</html> |
+</html> |