1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[js] doctype.systemId

This commit is contained in:
Witold Filipczyk 2021-05-26 08:22:33 +02:00
parent 35404925e0
commit 207534f3e0
2 changed files with 53 additions and 0 deletions

View File

@ -1561,9 +1561,41 @@ doctype_get_property_name(JSContext *ctx, unsigned int argc, JS::Value *vp)
return true;
}
static bool
doctype_get_property_systemId(JSContext *ctx, unsigned int argc, JS::Value *vp)
{
JS::CallArgs args = CallArgsFromVp(argc, vp);
JS::RootedObject hobj(ctx, &args.thisv().toObject());
JSCompartment *comp = js::GetContextCompartment(ctx);
if (!comp) {
return false;
}
struct ecmascript_interpreter *interpreter = JS_GetCompartmentPrivate(comp);
/* This can be called if @obj if not itself an instance of the
* appropriate class but has one in its prototype chain. Fail
* such calls. */
if (!JS_InstanceOf(ctx, hobj, &doctype_class, NULL))
return false;
xmlpp::Dtd *dtd = JS_GetPrivate(hobj);
if (!dtd) {
args.rval().setNull();
return true;
}
std::string v = dtd->get_system_id();
args.rval().setString(JS_NewStringCopyZ(ctx, v.c_str()));
return true;
}
JSPropertySpec doctype_props[] = {
JS_PSG("name", doctype_get_property_name, JSPROP_ENUMERATE),
JS_PSG("systemId", doctype_get_property_systemId, JSPROP_ENUMERATE),
JS_PS_END
};

View File

@ -0,0 +1,21 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<body>
<p>Click the button to display the doctype systemId of the document.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> In Internet Explorer 8 and earlier, the doctype property returns <em>null</em> for HTML and XHTML documents, and will only work for XML documents.</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.doctype.systemId;
alert(x);
}
</script>
</body>
</html>