1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Html: Add 'lang' to <h1> [#724]

This commit is contained in:
gnosygnu
2020-05-15 09:34:09 -04:00
parent b551c1875b
commit 654810d56c
3 changed files with 67 additions and 9 deletions

View File

@@ -0,0 +1,48 @@
/*
XOWA: the XOWA Offline Wiki Application
Copyright (C) 2012-2020 gnosygnu@gmail.com
XOWA is licensed under the terms of the General Public License (GPL) Version 3,
or alternatively under the terms of the Apache License Version 2.0.
You may use XOWA according to either of these licenses as is most appropriate
for your project on a case-by-case basis.
The terms of each license can be found in the source code repository:
GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
*/
package gplx.xowa.wikis.pages;
import gplx.Bry_;
import gplx.Bry_bfr;
import gplx.Bry_bfr_;
import gplx.tests.Gftest_fxt;
import gplx.xowa.Xop_fxt;
import gplx.xowa.Xowe_wiki;
import gplx.xowa.wikis.pages.htmls.Xopg_html_data;
import org.junit.Test;
public class Xopg_page_headingTest {
private Xopg_page_headingTstr tstr = new Xopg_page_headingTstr();
@Test public void Basic() {
tstr.Test("<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\">Page 1</h1>"
, "Page_1", "Page 1", "en");
}
}
class Xopg_page_headingTstr {
private Xopg_page_heading heading = new Xopg_page_heading();
private Xowe_wiki wiki;
public Xopg_page_headingTstr() {
Xop_fxt fxt = new Xop_fxt();
wiki = fxt.Wiki();
}
public void Test(String expd, String ttlDb, String ttlTxt, String lang) {
heading.Init(wiki, true, new Xopg_html_data(), Bry_.new_u8(ttlDb), Bry_.new_u8(ttlTxt), Bry_.new_u8(lang));
Bry_bfr bfr = Bry_bfr_.New();
heading.Bfr_arg__add(bfr);
Gftest_fxt.Eq__str(expd, bfr.To_str_and_clear());
}
}