Re: [webkit-dev] fullscreen-webkit.c

2016-12-29 Thread Michael Catanzaro
On Thu, 2016-12-29 at 14:26 -0500, Jerry Geis wrote:
> Hi All,
> 
> I took fullscreen-webkit.c and added some functionality.

Hi,

So my first question would be: where is this file? We can't help you
much if we don't know what you're doing. :)

> I now updated to CentOS 7.3 and the program still works - BUT - after
> the the first message (which does go full screen and no scroll bar)
> for some reason it activates the right scroll bar on a page that has
> no scroll. Just a simple message.
> 
> Is there a reason for that ? 
> Any thoughts?
> 
> Jerry
> 
> These are the files on the CentOS CD for CentOS 7.2 and CentOS 7.3
> for webkit.

This version of WebKit is extremely old and insecure; you won't be able
to get any support for it upstream, sorry. If you can reproduce with
the latest stable version, currently 2.14.2, then you could file a bug
report for the scrollbar appearing unnecessarily.

I did a quick check of the CentOS sources [1] and it looks like the
only change between 7.2 and 7.3 was a German translation update, so no
guesses as to what could have caused the change in behavior. I had
thought modern WebKit was coming to CentOS, because Red Hat was working
on another GNOME rebase and it's needed for that, but looks like that
didn't happen for 7.3.

Michael

[1] https://git.centos.org/summary/?r=rpms/webkitgtk3
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] fullscreen-webkit.c

2016-12-29 Thread Jerry Geis
Hi All,

I took fullscreen-webkit.c and added some functionality.
1) if first time running go full screen (this was there).
2) if program running then send a message with the URL and replace the
current one.
Which I did with:
case UNIQUE_ACTIVATE:
{
gchar *uri = unique_message_data_get_text(message);

if (uri) {
webkit_web_view_stop_loading(web_view);
log_printf(INFO, "URI: %s\n", uri);
webkit_web_view_load_uri(web_view, uri);
}


This program used to work fine on CentOS 7.2
I now updated to CentOS 7.3 and the program still works - BUT - after the
the first message (which does go full screen and no scroll bar) for some
reason it activates the right scroll bar on a page that has no scroll. Just
a simple message.

Is there a reason for that ?
Any thoughts?

Jerry

These are the files on the CentOS CD for CentOS 7.2 and CentOS 7.3 for
webkit.

../CDROM.iso/CentOS.iso.7/c7.2.listing.txt:-r--r--r-- 2 root root 17676
Sep  2 14:26 libproxy-webkitgtk3-0.4.11-8.el7.x86_64.rpm
../CDROM.iso/CentOS.iso.7/c7.2.listing.txt:-r--r--r-- 2 root root  16539656
Nov 25 10:12 libwebkit2gtk-2.4.9-5.el7.i686.rpm
../CDROM.iso/CentOS.iso.7/c7.2.listing.txt:-r--r--r-- 2 root root  16550220
Nov 25 10:12 libwebkit2gtk-2.4.9-5.el7.x86_64.rpm
../CDROM.iso/CentOS.iso.7/c7.2.listing.txt:-r--r--r-- 2 root root  11448272
Nov 25 11:03 webkitgtk3-2.4.9-5.el7.i686.rpm
../CDROM.iso/CentOS.iso.7/c7.2.listing.txt:-r--r--r-- 2 root root  11397948
Nov 25 11:03 webkitgtk3-2.4.9-5.el7.x86_64.rpm
../CDROM.iso/CentOS.iso.7/c7.2.listing.txt:-r--r--r-- 2 root root282660
Nov 25 11:03 webkitgtk3-devel-2.4.9-5.el7.i686.rpm
../CDROM.iso/CentOS.iso.7/c7.2.listing.txt:-r--r--r-- 2 root root282952
Nov 25 11:03 webkitgtk3-devel-2.4.9-5.el7.x86_64.rpm
../CDROM.iso/CentOS.iso.7/c7.2.listing.txt:-r--r--r-- 2 root root480900
Nov 25 11:03 webkitgtk3-doc-2.4.9-5.el7.noarch.rpm
../CDROM.iso/CentOS.iso.7/c7.3.listing.txt:-rw-rw-r-- 1 root root 17780
Nov 20 13:56 libproxy-webkitgtk3-0.4.11-10.el7.x86_64.rpm
../CDROM.iso/CentOS.iso.7/c7.3.listing.txt:-rw-rw-r-- 1 root root  16531464
Nov 20 14:20 libwebkit2gtk-2.4.9-6.el7.i686.rpm
../CDROM.iso/CentOS.iso.7/c7.3.listing.txt:-rw-rw-r-- 1 root root  16563500
Nov 20 14:20 libwebkit2gtk-2.4.9-6.el7.x86_64.rpm
../CDROM.iso/CentOS.iso.7/c7.3.listing.txt:-rw-rw-r-- 1 root root  11438332
Nov 20 15:59 webkitgtk3-2.4.9-6.el7.i686.rpm
../CDROM.iso/CentOS.iso.7/c7.3.listing.txt:-rw-rw-r-- 1 root root  11399428
Nov 20 15:59 webkitgtk3-2.4.9-6.el7.x86_64.rpm
../CDROM.iso/CentOS.iso.7/c7.3.listing.txt:-rw-rw-r-- 1 root root282748
Nov 20 15:59 webkitgtk3-devel-2.4.9-6.el7.i686.rpm
../CDROM.iso/CentOS.iso.7/c7.3.listing.txt:-rw-rw-r-- 1 root root283048
Nov 20 15:59 webkitgtk3-devel-2.4.9-6.el7.x86_64.rpm
../CDROM.iso/CentOS.iso.7/c7.3.listing.txt:-rw-rw-r-- 1 root root480844
Nov 20 15:59 webkitgtk3-doc-2.4.9-6.el7.noarch.rpm
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev