The updated packages just revert the security fixes which resolves this
immediate issue. Keeping the bug open though because we still want to
resolve the underlying issue so that we can republish an update with the
security fixes in it
** Changed in: json-c (Ubuntu)
Status: Fix Released =>
I've uploaded the changes that were sponsored to proposed to
https://launchpad.net/~ubuntu-security-proposed/+archive/ubuntu/ppa.
Please reject the packages that are currently in the unapproved queue.
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages,
Rather than going through -proposed, it needs to go via one of our
security PPAs (which are built without -updates) and then copied across,
which is something I can do.
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd
If this change is being reverted, it needs to be done via the security
pocket rather than proposed, as Tuesday's security update was based on
the version with this regression.
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to
.
- No configuration files.
- No fs capabilities.
Security team ACK for promoting gupnp to main, although I'd like someone
to take a look at the issue I mentioned with the subscribe() handler.
** Changed in: gupnp (Ubuntu)
Assignee: Chris Coulson (chrisccoulson) => (unassigned)
--
You received this
** Changed in: gupnp (Ubuntu)
Assignee: Ubuntu Security Team (ubuntu-security) => Chris Coulson
(chrisccoulson)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gupnp in Ubuntu.
https://bugs.launchpad.net/bugs/1799
** Changed in: gssdp (Ubuntu)
Assignee: Ubuntu Security Team (ubuntu-security) => (unassigned)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gssdp in Ubuntu.
https://bugs.launchpad.net/bugs/1799977
Title:
[MIR]
I reviewed gssdp 1.2.0-1 as checked in to eoan. This isn't a full
security audit, but rather a quick gauge of maintainability.
- gsspd is a gobject based library for using SSDP (Simple Service Discovery
Protocol), and is required by rygel.
- gssdp is part of the GNOME project.
- It doesn't see a
This one could do with a quick review from the security team.
** Changed in: gupnp (Ubuntu)
Assignee: (unassigned) => Ubuntu Security Team (ubuntu-security)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gupnp in
This one could do with a quick review from the security team.
** Changed in: gssdp (Ubuntu)
Assignee: (unassigned) => Ubuntu Security Team (ubuntu-security)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gssdp in
The issue is that O_PATH doesn't work from these containers:
2025 11:00:08 openat(4, "run", O_RDONLY|O_NOFOLLOW|O_CLOEXEC|O_PATH) =
-1 ELOOP (Too many levels of symbolic links)
Apparently, O_PATH was added in 2.6.39, so this makes sense now.
--
You received this bug notification because you
We're just going to publish a revert of the CVE-2018-6954 fixes for
16.04 before investigating this further. As far as I can tell, this
shouldn't be an issue in bionic where MIN_KERNEL_SUPPORTED is 3.2 in
glibc.
** CVE added: https://cve.mitre.org/cgi-bin/cvename.cgi?name=2018-6954
--
You
** Changed in: systemd (Ubuntu)
Assignee: (unassigned) => Chris Coulson (chrisccoulson)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1804847
Title:
systemd=
This occurs when gdb sets breakpoints on various probe events in the
dynamic loader. The probe event locations are exported from ld.so as SDT
markers, but gdb needs to know whether ARM or Thumb instructions are
being exported at each marker so that it can insert the appropriate
breakpoint
(Note, I looked at this because it was breaking rustc tests on armhf.
The workaround is the same - install libc6-dbg to make the crash go
away)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gdb in Ubuntu.
This is a deliberate change in binutils-2.29, which changes how the ADR
instruction works with Thumb function symbols:
https://sourceware.org/git/gitweb.cgi?p=binutils-
gdb.git;a=commit;h=52a86f843b6dee1de9977293da9786649b146b05
There are some changes in openssl which work around this:
I also verified that with this workaround for the first instruction, the
non-NEON path passes the test, by removing this block from
sha256-armv4.S:
#if __ARM_MAX_ARCH__>=7 && !defined(__KERNEL__)
ldr r12,.LOPENSSL_armcap
ldr r12,[r3,r12]@ OPENSSL_armcap_P
I stepped through 2 builds side-by-side in gdb - one good build built
with gcc 7.1, and one bad build, built with gcc 7.2. I managed to narrow
it down to a bug in sha256_block_data_order.
One of the first differences I spotted was that the good build branches
almost immediately to a NEON code
Continuing debugging the broken build, if we look at the first few
instructions of sha256_block_data_order:
0x004160c0 <+0>: subwr3, pc, #3
0x004160c4 <+4>: ldr.w r12, [pc, #-36] ; 0x4160a4
0x004160c8 <+8>: ldr.w r12, [r3, r12]
This looks similar to before - the
The incorrect instruction at the start of sha256_block_data_order comes
from the ADR pseudo-instruction in sha256-armv4.S:
.global sha256_block_data_order
.type sha256_block_data_order,%function
sha256_block_data_order:
#if __ARM_ARCH__<7
sub r3,pc,#8@
On the broken build, the first thing to notice is that when entering
sha256_block_data_order, we are running in Thumb mode, as bit 5 of the
status register is set:
(gdb) info registers
r0 0x4b7558 4945240
r1 0x4b7580
Changing the start of sha256_block_data_order in sha256-armv4.S to avoid
the use of the ADR pseudo-instruction like this:
global sha256_block_data_order
.type sha256_block_data_order,%function
sha256_block_data_order:
#ifdef __thumb2__
sub r3,pc,#4@
This is separate from autofill profiles, but will be necessary to clear
site-specific autocomplete data.
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1260014
** Summary changed:
- Support autofill
+ Initial support for autofill
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1214048
Title:
Initial support for autofill
** Changed in: oxide
Milestone: branch-1.22 => branch-1.23
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1214048
Title:
Support autofill
Status in Oxide:
** Changed in: oxide
Milestone: branch-1.22 => None
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1544754
Title:
implement the HTML5 pointer lock API
Status
** Changed in: oxide/1.21
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1665978
Title:
Double-tap to zoom does not
** Changed in: oxide/1.21
Status: Triaged => Fix Committed
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1665978
Title:
Double-tap to zoom does not work
** Changed in: oxide/1.21
Milestone: 1.21.2 => 1.21.3
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1665978
Title:
Double-tap to zoom does not work anymore in
In case it's not clear, rustc needs to exist in the security pocket for
each release
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to binutils in Ubuntu.
https://bugs.launchpad.net/bugs/1667662
Title:
SRU: backport rustc to
** Changed in: oxide
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1665978
Title:
Double-tap to zoom does not work
** Also affects: oxide/1.21
Importance: Undecided
Status: New
** Changed in: oxide/1.21
Importance: Undecided => High
** Changed in: oxide/1.21
Status: New => Triaged
** Changed in: oxide/1.21
Milestone: None => 1.21.2
--
You received this bug notification because you
** Changed in: webbrowser-app (Ubuntu)
Status: New => Invalid
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1665978
Title:
Double-tap to zoom does not work
* Changed in: oxide
Assignee: (unassigned) => Chris Coulson (chrisccoulson)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1665978
Title:
Double-tap
Public bug reported:
Steps to reproduce:
1) Move mouse pointer to addressbar (over the text entry).
2) Use the scroll wheel.
What should happen:
Nothing
What happens:
The webview content scrolls
** Affects: oxide
Importance: Medium
Status: Triaged
** Affects: webbrowser-app
Hrmmm, does X crash here too?
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to qtbase-opensource-src in
Ubuntu.
https://bugs.launchpad.net/bugs/1560994
Title:
webbrowser-app crashed with SIGABRT in
This is not a bug in Oxide - the CHECK failure in this case is a red
herring and is a side effect of a bug elsewhere that triggers an unclean
exit() (see bug 1663609)
** Project changed: oxide => qtdeclarative-opensource-src (Ubuntu)
--
You received this bug notification because you are a
The abort here is a red herring and is masking the primary issue, which
you can see a few frames further down:
#5 0x7f87c8e3d088 in __run_exit_handlers (status=status@entry=1,
listp=0x7f87c91c75f8 <__exit_funcs>,
run_list_atexit=run_list_atexit@entry=true) at exit.c:82
atfct =
** Changed in: oxide
Milestone: branch-1.21 => branch-1.22
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1544754
Title:
implement the HTML5 pointer lock API
I should point out that the change which landed for this doesn't
actually make dialogs application modal, as the dialog implementation is
window modal at best. But we only ever display 1 script opened dialog at
a time now.
--
You received this bug notification because you are a member of Ubuntu
** Changed in: oxide
Status: In Progress => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1568296
Title:
Make JS dialogs app modal
Status in
Oxide failing to create a GL context isn't your only issue here, as Qt
also fails to create one (which happens completely independently of
Oxide)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
** Changed in: oxide/1.20
Status: Fix Committed => Fix Released
** Changed in: oxide/1.19
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
** Changed in: oxide
Status: Triaged => In Progress
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1568296
Title:
Make JS dialogs app modal
Status in
It's basically hitting the same issue as
https://bugs.chromium.org/p/chromium/issues/detail?id=664177 because the
build was 10 weeks old from yesterday (actually, it's not quite, but the
build date recorded in the build is the first Sunday of the month, which
is 6th November for the version of
** Changed in: oxide
Milestone: None => branch-1.21
** Changed in: oxide
Assignee: (unassigned) => Chris Coulson (chrisccoulson)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
** Changed in: oxide
Status: In Progress => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1599771
Title:
Webview appears to think it's in
** Changed in: oxide/1.20
Milestone: 1.20.0 => 1.20.2
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1649861
Title:
When upgrading to oxide 1.19, tabs from
** Changed in: oxide
Milestone: branch-1.20 => branch-1.21
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1544754
Title:
implement the HTML5 pointer lock API
** Changed in: oxide
Milestone: branch-1.20 => branch-1.21
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1599771
Title:
Webview appears to think it's in focus
** Changed in: oxide
Milestone: branch-1.20 => branch-1.21
** Also affects: oxide/1.20
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
** Package changed: oxide-qt (Ubuntu) => oxide
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1638663
Title:
Segfault on arm64 dragonboard
Status in Oxide:
New
** Changed in: oxide
Milestone: branch-1.19 => branch-1.20
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1544754
Title:
implement the HTML5 pointer lock API
** Changed in: oxide
Status: Triaged => Fix Released
** Changed in: oxide
Milestone: None => branch-1.20
** Changed in: oxide
Assignee: (unassigned) => Santosh (santoshbit2007)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which
So, the fix for this is that the error page will be implemented in HTML
and live in the new UbuntuWebView implementation inside Oxide.
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
There's not much point in keeping this bug open (see my last comment),
so I'm going to close it for now. Feel free to reopen if you this might
be a bug in Oxide
** Changed in: oxide
Status: New => Invalid
** No longer affects: webbrowser-app (Ubuntu)
--
You received this bug
** Changed in: oxide
Importance: Undecided => High
** Changed in: oxide
Status: New => Triaged
** No longer affects: webbrowser-app (Ubuntu)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in
Can you paste the contents of chrome://gpu/ please?
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1629219
Title:
Blockiness in rendering when run under unity8
Running it in valgrind gives a clue:
==19941== Invalid read of size 4
==19941==at 0x6604DA4: ??? (in
/usr/lib/x86_64-linux-gnu/libQt5Core.so.5.5.1)
==19941==by 0x1877174F: ???
==19941==by 0xFFFD: ???
==19941==by 0x2483D3FE: ??? (in
** Changed in: oxide
Milestone: None => branch-1.19
** Changed in: oxide
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
*** This bug is a duplicate of bug 1448079 ***
https://bugs.launchpad.net/bugs/1448079
** This bug has been marked a duplicate of bug 1448079
Don't run the event loop after QGuiApplication begins to tear down
--
You received this bug notification because you are a member of Ubuntu
Touch
*** This bug is a duplicate of bug 1448079 ***
https://bugs.launchpad.net/bugs/1448079
** This bug is no longer a duplicate of bug 1435465
Alt+F4 crashes app
** This bug has been marked a duplicate of bug 1448079
Don't run the event loop after QGuiApplication begins to tear down
--
*** This bug is a duplicate of bug 1448079 ***
https://bugs.launchpad.net/bugs/1448079
** This bug is no longer a duplicate of bug 1435465
Alt+F4 crashes app
** This bug has been marked a duplicate of bug 1448079
Don't run the event loop after QGuiApplication begins to tear down
--
*** This bug is a duplicate of bug 1448079 ***
https://bugs.launchpad.net/bugs/1448079
** This bug is no longer a duplicate of bug 1435465
Alt+F4 crashes app
** This bug has been marked a duplicate of bug 1448079
Don't run the event loop after QGuiApplication begins to tear down
--
** Changed in: oxide
Milestone: branch-1.18 => branch-1.19
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1544754
Title:
implement the HTML5 pointer lock API
And confined applications can't access that anyway.
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1610929
Title:
Implement Screen::GetShellMode()
Status in Mir:
New
Ditto for firefox (but to precise)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1620313
Title:
stop using hardening-wrapper, obsoleted by recent dpkg-dev
Status in firefox
** Changed in: oxide/1.17
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apparmor-easyprof-ubuntu
in Ubuntu.
https://bugs.launchpad.net/bugs/1260103
Title:
oxide should use an
** Changed in: oxide/1.17
Milestone: 1.17.4 => 1.17.5
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apparmor-easyprof-ubuntu
in Ubuntu.
https://bugs.launchpad.net/bugs/1260103
Title:
oxide should use an app-specific
** Changed in: oxide
Milestone: branch-1.17 => branch-1.18
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apparmor-easyprof-ubuntu
in Ubuntu.
https://bugs.launchpad.net/bugs/1260103
Title:
oxide should use an
The other Oxide issue is intermittent. It'll probably work if you retry
it
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to libhybris in Ubuntu.
https://bugs.launchpad.net/bugs/1613257
Title:
oxide-qt fails to build on
Public bug reported:
It looks like this isn't implemented in qtubuntu. We want to identify
the internal panel in Oxide for bug 1601887, and thought we might be
able to use this.
** Affects: qtubuntu (Ubuntu)
Importance: Undecided
Status: New
--
You received this bug notification
** Changed in: oxide
Milestone: branch-1.17 => branch-1.18
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1544754
Title:
implement the HTML5 pointer lock API
** Changed in: oxide
Status: Triaged => In Progress
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1599771
Title:
Webview appears to think it's in focus
The only time the browser should restore session cookies is after a
crash or some other abnormal shutdown. Restoring should never be the
default as it turns session cookies in to permanent cookies - they will
never expire, as they don't have an expiration date.
--
You received this bug
** Changed in: oxide/1.16
Status: Fix Committed => Fix Released
** Changed in: oxide/1.15
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
I'm not sure what Oxide is meant to do here - we query the location
service via the qtpositioning API. There is no API for "waking up the
GPS" AFAICT.
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to location-service in
That won't work for child processes, where the environment variable
won't exist. Also, we should have something that works for current apps
on the phone (I assume there's a different environment variable for
that). If you're not using PathService, there would at least need to be
a command line
I would modify base::GetShmemTempDir() to lookup a path via
base::PathService and then have Oxide override this. You'll need to add
a new key in base/base_paths_posix.h as well.
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to
** Changed in: oxide
Assignee: (unassigned) => Olivier Tilloy (osomon)
** Changed in: oxide
Status: New => Triaged
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apparmor-easyprof-ubuntu
in Ubuntu.
** Changed in: oxide
Assignee: (unassigned) => Santosh (santoshbit2007)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1593700
Title:
Add spellchecking
This will also require webbrowser-app changes to support the spelling
suggestions in the context menu
** Also affects: webbrowser-app (Ubuntu)
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is
Whatever we do, we should stop using QQuickItem::hasActiveFocus() for
the reason outlined in comment 8. I don't understand the issue with
QQuickWindow::activeFocusItem() though - it looks like it's cleared to
nullptr before a focus out event and initialized to the new focus item
before a focus in
** Package changed: webbrowser-app (Ubuntu) => oxide
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1601887
Title:
camera is inverted and rotated on M10
Status in
** Changed in: oxide
Status: Confirmed => Triaged
** Changed in: oxide
Importance: Undecided => Medium
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
I think I'd prefer to just use QQuickWindow::activeFocusItem in
oxide::qquick::ContentsView::HasFocus(). From looking at the code, I
don't even think that QQuickItem::hasActiveFocus has the correct
semantics as it will indicate active focus for ancestors of the active
focus item which isn't really
(after looking at QQuickWindowPrivate::setFocusInScope)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1599771
Title:
Webview appears to think it's in focus when
I suspect that oxide::qquick::ContentsView::HasFocus also needs to
verify that item_ == item_->window()->activeFocusItem()
(http://doc.qt.io/qt-5/qquickwindow.html#activeFocusItem-prop). It looks
like this is cleared before dispatching QQuickItem::focusOutEvent(),
whereas
** Changed in: oxide
Assignee: (unassigned) => Santosh (santoshbit2007)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1599771
Title:
Webview appears to think
Public bug reported:
See the screenshot - when keyboard focus is on the addressbar, the
webview thinks it is still in focus (indicated by the presence of the
caret in the search field).
Not sure if this is Oxide or webbrowser-app
** Affects: oxide
Importance: Undecided
Status: New
This isn't really a webbrowser-app or Oxide issue - this is a desktop
environment issue. If you run webbrowser-app with
QT_DEVICE_PIXEL_RATIO=2 then it works fine.
** Changed in: oxide
Status: New => Invalid
--
You received this bug notification because you are a member of Ubuntu
Touch
** Changed in: oxide/1.15
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1570511
Title:
Select All shows up when
** Changed in: oxide/1.15
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1586968
Title:
Touch selection menu initially
** Changed in: oxide
Milestone: branch-1.16 => branch-1.17
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1544754
Title:
implement the HTML5 pointer lock API
** Changed in: oxide/1.15
Milestone: 1.15.5 => 1.15.7
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1570511
Title:
Select All shows up when replying to gmail
The browser can also load the plugin from the partner repository (in
/usr/lib/adobe-flashplugin), although that's currently broken for a
different reason.
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to
Fixed with
https://git.launchpad.net/oxide/commit/?id=0cf0e457da8772747e764c200428ae3fdbb659e1
** Changed in: oxide
Status: In Progress => Fix Released
** No longer affects: webbrowser-app (Ubuntu)
--
You received this bug notification because you are a member of Ubuntu
Touch seeded
There's multiple issues here:
1) Oxide is reading data from the clipboard every time the selection
bounds change, in order to update the editing capability flags. This is
really expensive (more than 50ms!)
2) Selections aren't always completely cancelled in Blink, and we
continue to receive
** Changed in: oxide
Status: Triaged => In Progress
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
https://bugs.launchpad.net/bugs/1569315
Title:
Scrolling performance is dreadful after
** Changed in: oxide
Assignee: (unassigned) => Chris Coulson (chrisccoulson)
** Changed in: oxide
Milestone: None => branch-1.16
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu.
1 - 100 of 293 matches
Mail list logo