Re: [Vimprobable-users] [PATCH] Refactured hinting
Vimprobable is a lean web browser optimised for full keyboard control
Brought to you by:
hanness
|
From: Daniel C. <dan...@gm...> - 2011-08-15 00:54:28
|
Hi!
This patch doesn't resolve the problem and should not be applied. I disables
hinting in all frames.
Is there anybody how knows how to test if a frame has same protocol, host and
port, without accessing this properties on the frame, whate raises the error?
> ---
> hinting.js | 3 +++
> 1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/hinting.js b/hinting.js
> index 2b981e8..c106654 100644
> --- a/hinting.js
> +++ b/hinting.js
> @@ -22,6 +22,9 @@ function Hints() {
> hints = [];
>
> function helper (win, offsetX, offsetY) {
> + if (topwin.location !== win.location) {
> + return;
> + }
> var doc = win.document;
>
> var win_height = win.height;
> --
Daniel
|