Implement find_id inside frames
Fixes :click-element
This commit is contained in:
parent
825939633a
commit
5c5f992821
@ -220,9 +220,39 @@ window._qutebrowser.webelem = (function() {
|
|||||||
return out;
|
return out;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Runs a function in a frame until the result is not null, then return
|
||||||
|
function run_frames(func) {
|
||||||
|
for (let i = 0; i < window.frames.length; ++i) {
|
||||||
|
if (iframe_same_domain(window.frames[i])) {
|
||||||
|
const frame = window.frames[i];
|
||||||
|
const result = func(frame);
|
||||||
|
if (result) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
funcs.find_id = (id) => {
|
funcs.find_id = (id) => {
|
||||||
const elem = document.getElementById(id);
|
const elem = document.getElementById(id);
|
||||||
|
if (elem) {
|
||||||
return serialize_elem(elem);
|
return serialize_elem(elem);
|
||||||
|
}
|
||||||
|
|
||||||
|
const serialized_elem = run_frames((frame) => {
|
||||||
|
const element = frame.window.document.getElementById(id);
|
||||||
|
if (element) {
|
||||||
|
return serialize_elem(element, frame);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (serialized_elem) {
|
||||||
|
return serialized_elem;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Check if elem is an iframe, and if so, run func on it.
|
// Check if elem is an iframe, and if so, run func on it.
|
||||||
@ -239,20 +269,6 @@ window._qutebrowser.webelem = (function() {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Runs a function in a frame until the result is not null, then return
|
|
||||||
function run_frames(func) {
|
|
||||||
for (let i = 0; i < window.frames.length; ++i) {
|
|
||||||
if (iframe_same_domain(window.frames[i])) {
|
|
||||||
const frame = window.frames[i];
|
|
||||||
const result = func(frame);
|
|
||||||
if (result) {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
funcs.find_focused = () => {
|
funcs.find_focused = () => {
|
||||||
const elem = document.activeElement;
|
const elem = document.activeElement;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user