parserTests: Avoid using <big> for adoption agency algorithm test
authorKunal Mehta <legoktm@member.fsf.org>
Mon, 30 Jan 2017 09:52:23 +0000 (01:52 -0800)
committerKunal Mehta <legoktm@member.fsf.org>
Mon, 30 Jan 2017 09:52:23 +0000 (01:52 -0800)
The behavior of <big> may change in the future, c.f. T154067.

Change-Id: I817894c25cab96a491028fe2a9443140ea1d6e97

tests/parser/parserTests.txt

index 1563525..46e1012 100644 (file)
@@ -16242,13 +16242,13 @@ HTML tag with leading space is parsed as text
 
 # This test case is fixed in Parsoid by domino 1.0.12. (bug 50604)
 # Note that html2wt is considerably more difficult if we use <b> in
-# the test case, instead of <big>
+# the test case, instead of <small>
 !! test
 Ensure that HTML adoption agency algorithm is properly implemented.
 !! wikitext
-<big>X<big>Y</big>Z</big>
+<small>X<small>Y</small>Z</small>
 !! html
-<p><big>X<big>Y</big>Z</big>
+<p><small>X<small>Y</small>Z</small>
 </p>
 !! end