mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-08 07:32:53 +08:00
11 lines
285 B
JavaScript
11 lines
285 B
JavaScript
![]() |
require(__dirname).test({
|
||
|
xml : "<r><![CDATA[ this is character data ]]></r>",
|
||
|
expect : [
|
||
|
["opentag", {"name": "R","attributes": {}}],
|
||
|
["opencdata", undefined],
|
||
|
["cdata", " this is character data "],
|
||
|
["closecdata", undefined],
|
||
|
["closetag", "R"]
|
||
|
]
|
||
|
});
|