mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[js] element.previousSibling
This commit is contained in:
parent
6baba00aab
commit
e4eaca040d
@ -73,6 +73,7 @@ static bool element_get_property_nextElementSibling(JSContext *ctx, unsigned int
|
|||||||
static bool element_get_property_nextSibling(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
static bool element_get_property_nextSibling(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
||||||
static bool element_get_property_outerHtml(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
static bool element_get_property_outerHtml(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
||||||
static bool element_set_property_outerHtml(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
static bool element_set_property_outerHtml(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
||||||
|
static bool element_get_property_previousSibling(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
||||||
static bool element_get_property_tagName(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
static bool element_get_property_tagName(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
||||||
static bool element_get_property_textContent(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
static bool element_get_property_textContent(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
||||||
static bool element_set_property_textContent(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
static bool element_set_property_textContent(JSContext *ctx, unsigned int argc, JS::Value *vp);
|
||||||
@ -106,6 +107,7 @@ JSPropertySpec element_props[] = {
|
|||||||
JS_PSG("nextElementSibling", element_get_property_nextElementSibling, JSPROP_ENUMERATE),
|
JS_PSG("nextElementSibling", element_get_property_nextElementSibling, JSPROP_ENUMERATE),
|
||||||
JS_PSG("nextSibling", element_get_property_nextSibling, JSPROP_ENUMERATE),
|
JS_PSG("nextSibling", element_get_property_nextSibling, JSPROP_ENUMERATE),
|
||||||
JS_PSGS("outerHTML", element_get_property_outerHtml, element_set_property_outerHtml, JSPROP_ENUMERATE),
|
JS_PSGS("outerHTML", element_get_property_outerHtml, element_set_property_outerHtml, JSPROP_ENUMERATE),
|
||||||
|
JS_PSG("previousSibling", element_get_property_previousSibling, JSPROP_ENUMERATE),
|
||||||
JS_PSG("tagName", element_get_property_tagName, JSPROP_ENUMERATE),
|
JS_PSG("tagName", element_get_property_tagName, JSPROP_ENUMERATE),
|
||||||
JS_PSGS("textContent", element_get_property_textContent, element_set_property_textContent, JSPROP_ENUMERATE),
|
JS_PSGS("textContent", element_get_property_textContent, element_set_property_textContent, JSPROP_ENUMERATE),
|
||||||
JS_PSGS("title", element_get_property_title, element_set_property_title, JSPROP_ENUMERATE),
|
JS_PSGS("title", element_get_property_title, element_set_property_title, JSPROP_ENUMERATE),
|
||||||
@ -614,7 +616,6 @@ element_get_property_nextElementSibling(JSContext *ctx, unsigned int argc, JS::V
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
element_get_property_nextSibling(JSContext *ctx, unsigned int argc, JS::Value *vp)
|
element_get_property_nextSibling(JSContext *ctx, unsigned int argc, JS::Value *vp)
|
||||||
{
|
{
|
||||||
@ -661,6 +662,52 @@ element_get_property_nextSibling(JSContext *ctx, unsigned int argc, JS::Value *v
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
element_get_property_previousSibling(JSContext *ctx, unsigned int argc, JS::Value *vp)
|
||||||
|
{
|
||||||
|
JS::CallArgs args = CallArgsFromVp(argc, vp);
|
||||||
|
JS::RootedObject hobj(ctx, &args.thisv().toObject());
|
||||||
|
|
||||||
|
struct view_state *vs;
|
||||||
|
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, &element_class, NULL))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
vs = interpreter->vs;
|
||||||
|
if (!vs) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
xmlpp::Element *el = JS_GetPrivate(hobj);
|
||||||
|
|
||||||
|
if (!el) {
|
||||||
|
args.rval().setNull();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto node = el->get_previous_sibling();
|
||||||
|
|
||||||
|
if (!node) {
|
||||||
|
args.rval().setNull();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
JSObject *elem = getElement(ctx, node);
|
||||||
|
args.rval().setObject(*elem);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
element_get_property_tagName(JSContext *ctx, unsigned int argc, JS::Value *vp)
|
element_get_property_tagName(JSContext *ctx, unsigned int argc, JS::Value *vp)
|
||||||
{
|
{
|
||||||
|
28
test/ecmascript/previousSibling.html
Normal file
28
test/ecmascript/previousSibling.html
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<p>Example list:</p>
|
||||||
|
|
||||||
|
<ul><li id="item1">Coffee (first li)</li><li id="item2">Tea (second li)</li></ul>
|
||||||
|
|
||||||
|
<p>Click the button to get the HTML content of the previous sibling of the second list item.</p>
|
||||||
|
|
||||||
|
<button onclick="myFunction()">Try it</button>
|
||||||
|
|
||||||
|
<p><strong>Note:</strong> Whitespace inside elements is considered as text, and text
|
||||||
|
is considered as nodes.</p>
|
||||||
|
|
||||||
|
<p>If you add whitespace between the two li elements, the result will be "undefined".</p>
|
||||||
|
|
||||||
|
<p id="demo"></p>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function myFunction() {
|
||||||
|
var x = document.getElementById("item2").previousSibling.innerHTML;
|
||||||
|
alert(x);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user