Launchpad has imported 48 comments from the remote bug at
https://bugs.webkit.org/show_bug.cgi?id=28350.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.

------------------------------------------------------------------------
On 2009-08-16T03:31:58+00:00 Rniwa wrote:

Use the nightly build (27291) and go visit 
http://en.wikipedia.org/wiki/Main_Page
navigation, search, and all other contents on the left-pane shows up below the 
main content.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/0

------------------------------------------------------------------------
On 2009-08-16T03:44:25+00:00 Simon-fraser wrote:

Maybe caused by http://trac.webkit.org/changeset/47255 ?
We don't have a regression window yet.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/1

------------------------------------------------------------------------
On 2009-08-16T03:47:44+00:00 Simon-fraser wrote:

Yeah, reverting 47255 fixes it.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/2

------------------------------------------------------------------------
On 2009-08-16T03:59:13+00:00 Mitz-6 wrote:

Changing the page’s DOCTYPE to <!DOCTYPE html> causes the layout to
break even without r47255.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/3

------------------------------------------------------------------------
On 2009-08-16T04:31:58+00:00 Mitz-6 wrote:

Created attachment 34916
Reduction

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/4

------------------------------------------------------------------------
On 2009-08-16T04:46:34+00:00 Mitz-6 wrote:

Created attachment 34918
Extended test case

Firefox behavior is rather strange: in cases A and B, the overflow
section (blue) clears the float (yellow), but in case C it does not.
Note that the only difference between case B and case C is that the
container has a top border.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/5

------------------------------------------------------------------------
On 2009-08-16T05:24:14+00:00 Mitz-6 wrote:

The layout difference between WebKit and Gecko is caused by
<http://en.wikipedia.org/skins-1.5/monobook/KHTMLFixes.css>, which is
loaded dynamically based on UA sniffing via JavaScript. The only rule in
that style sheet is:

/* work around the horizontal scrollbars */
#column-content { margin-left: 0; }

which overrides the margin specific in main.css:

margin: 0 0 .6em -12.2em;

Using the Web Inspector to disable the 'margin-left: 0;' rule fixes the
layout and does not cause a horizontal scroll bar to appear.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/6

------------------------------------------------------------------------
On 2009-08-16T05:28:40+00:00 Mitz-6 wrote:

<rdar://problem/7145895>

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/7

------------------------------------------------------------------------
On 2009-08-16T05:30:03+00:00 Rniwa wrote:

(In reply to comment #6)
> The layout difference between WebKit and Gecko is caused by
> <http://en.wikipedia.org/skins-1.5/monobook/KHTMLFixes.css>, which is loaded
> dynamically based on UA sniffing via JavaScript. The only rule in that style
> sheet is:
> 
> /* work around the horizontal scrollbars */
> #column-content { margin-left: 0; }
> 
> which overrides the margin specific in main.css:
> 
> margin: 0 0 .6em -12.2em;
> 
> Using the Web Inspector to disable the 'margin-left: 0;' rule fixes the layout
> and does not cause a horizontal scroll bar to appear.

Is that work around still required for the latest WebKit?  i.e. will horizontal
scrollbars appear without it?  If not, we can ask people in wikipedia to
disable that rule for the latest webkit.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/8

------------------------------------------------------------------------
On 2009-08-16T05:31:15+00:00 Mitz-6 wrote:

> > Using the Web Inspector to disable the 'margin-left: 0;' rule fixes the 
> > layout
> > and does not cause a horizontal scroll bar to appear.
> 
> Is that work around still required for the latest WebKit?  i.e. will 
> horizontal
> scrollbars appear without it?

No. Like I said, disabling the rule does not cause a horizontal scroll
bar to appear.

>  If not, we can ask people in wikipedia to
> disable that rule for the latest webkit.

I have moved the bug to the Evangelism component.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/9

------------------------------------------------------------------------
On 2009-08-16T05:35:17+00:00 Rniwa wrote:

(In reply to comment #9)
> No. Like I said, disabling the rule does not cause a horizontal scroll bar to
> appear.

I see.  It seems like we should contact wikipedia then.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/10

------------------------------------------------------------------------
On 2009-08-16T05:49:04+00:00 Rniwa wrote:

(In reply to comment #10)
> (In reply to comment #9)
> > No. Like I said, disabling the rule does not cause a horizontal scroll bar 
> > to
> > appear.
> 
> I see.  It seems like we should contact wikipedia then.

Maybe we should bring it up at
http://en.wikipedia.org/wiki/Wikipedia:Help_desk

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/11

------------------------------------------------------------------------
On 2009-08-16T07:53:53+00:00 Rniwa wrote:

Ugh... I just noticed that this bug reproduces on other MediaWiki as
well.  We can't really force every site using MediaWiki to change their
script.  e.g. http://www.mediawiki.org/wiki/MediaWiki

I guess we need to preserve the old behavior or add work around for
MediaWiki.  But meanwhile, we should tell MediaWiki folks to modify the
script so that it won't apply that style rule for the new versions of
WebKit.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/12

------------------------------------------------------------------------
On 2009-08-16T09:02:12+00:00 Mitz-6 wrote:

Created attachment 34922
Proposed site-specific hack

The scope of this hack can be narrowed further by adding path components
before /KHTMLFixes.css or widened by not requiring an exact string
match. An alternative hack would be to bypass the UA detection, but I
think would be more risky.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/13

------------------------------------------------------------------------
On 2009-08-16T16:55:28+00:00 Dglazkov wrote:

It's curious that Firefox does something completely different for the
first Reduction: blue just overlaps yellow and stays side-by-side. What
the heck is the "right" way here?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/14

------------------------------------------------------------------------
On 2009-08-16T16:59:16+00:00 Dglazkov wrote:

Extended test case appears to look the same pre-r47255 and post.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/15

------------------------------------------------------------------------
On 2009-08-16T17:00:15+00:00 Mitz-6 wrote:

(In reply to comment #15)
> Extended test case appears to look the same pre-r47255 and post.

Because it has <!DOCTYPE html>. Without it, it looks different in
WebKit. Anyway, both test cases are pretty much irrelevant to this bug.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/16

------------------------------------------------------------------------
On 2009-08-16T17:10:47+00:00 Hyatt-t wrote:

I'm confused... Wikipedia isn't in strict mode is it?  It looks like
it's in "almost strict" mode, so isn't the strict mode issue relevant to
this?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/17

------------------------------------------------------------------------
On 2009-08-16T17:14:19+00:00 Mitz-6 wrote:

(In reply to comment #17)
> I'm confused... Wikipedia isn't in strict mode is it?  It looks like it's in
> "almost strict" mode, so isn't the strict mode issue relevant to this?

<http://trac.webkit.org/changeset/47255> dropped unified float clearing
behavior across modes since neither Firefox nor IE8 have the quirk
WebKit used to have.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/18

------------------------------------------------------------------------
On 2009-08-16T17:33:53+00:00 Rniwa wrote:

(In reply to comment #5)
> Created an attachment (id=34918) [details]
> Extended test case
> 
> Firefox behavior is rather strange: in cases A and B, the overflow section
> (blue) clears the float (yellow), but in case C it does not. Note that the 
> only
> difference between case B and case C is that the container has a top border.

The rendering of this on WebKit and MSIE8 are identical.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/19

------------------------------------------------------------------------
On 2009-08-16T17:36:07+00:00 Rniwa wrote:

(In reply to comment #5)
> Created an attachment (id=34918) [details]
> Extended test case
> 
> Firefox behavior is rather strange: in cases A and B, the overflow section
> (blue) clears the float (yellow), but in case C it does not. Note that the 
> only
> difference between case B and case C is that the container has a top border.

On MSIE8, width of the outer box is ignored.  Yellow box appears on the
right of screen, and blue box appears on the left with the same y.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/20

------------------------------------------------------------------------
On 2009-08-16T17:45:42+00:00 Darin-m wrote:

Comment on attachment 34922
Proposed site-specific hack

r=me

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/21

------------------------------------------------------------------------
On 2009-08-16T17:50:14+00:00 Darin-m wrote:

I marked this as reviewed, because I think it's a great thing to do. We
don't need a KHTML-specific style sheet that's working around a bug we
no longer have.

Hyatt and other experts may wish to continue to debate other aspects of
this, but it seems clear cut that we don't need this style rule.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/22

------------------------------------------------------------------------
On 2009-08-16T19:04:21+00:00 Hyatt-t wrote:

I'm not a fan of this hack though.  What incentive does Wikipedia have
to fix the issue if we work around it like this?  I am worried this hack
will just stay in the code forever.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/23

------------------------------------------------------------------------
On 2009-08-16T19:11:34+00:00 Mitz-6 wrote:

(In reply to comment #23)
> I'm not a fan of this hack though.  What incentive does Wikipedia have to fix
> the issue if we work around it like this?  I am worried this hack will just
> stay in the code forever.

Yeah, that’s why I originally made this an evangelism bug. However, the
problem here is that the buggy code is replicated in many websites that
use the MediaWiki system, so this is more like the kind of workarounds
we have for 3rd-party apps than a site-specific hack. Maybe the right
thing to do is wait for Wikipedia to respond and if they do, re-evaluate
the necessity of the hack.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/24

------------------------------------------------------------------------
On 2009-08-16T19:12:11+00:00 Hyatt-t wrote:

I guess I'm just questioning what our site-specific-hack policy is.  Do
we have to immediately put the site-specific hack into the code, or can
we give evangelism some time to work first?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/25

------------------------------------------------------------------------
On 2009-08-16T19:13:49+00:00 Hyatt-t wrote:

I guess I don't mind this landing as long as we have a bug open and
continue to evangelize, but you have a bigger stick to bargain with when
you can actually say "This is broken now. Please fix."

If you approach Wikipedia with "Well this would be broken, but we worked
around it, so you can work across old and new versions of WebKit without
doing anything," then they have no incentive to change.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/26

------------------------------------------------------------------------
On 2009-08-16T20:09:14+00:00 Dglazkov wrote:

I can get WebKit evangelism folks at Google chip in with the effort as
well.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/27

------------------------------------------------------------------------
On 2009-08-16T20:24:46+00:00 Rniwa wrote:

(In reply to comment #26)
> I guess I don't mind this landing as long as we have a bug open and continue 
> to
> evangelize, but you have a bigger stick to bargain with when you can actually
> say "This is broken now. Please fix."
> 
> If you approach Wikipedia with "Well this would be broken, but we worked 
> around
> it, so you can work across old and new versions of WebKit without doing
> anything," then they have no incentive to change.

I agree.  It's probably better for us to contact MediaWiki / Wikipedia
before we add this work around.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/28

------------------------------------------------------------------------
On 2009-08-16T22:14:21+00:00 Pkasting wrote:

(In reply to comment #25)
> I guess I'm just questioning what our site-specific-hack policy is.  Do we 
> have
> to immediately put the site-specific hack into the code, or can we give
> evangelism some time to work first?

When this kind of issue came up for Google Chrome, I proposed that we
have a policy of not doing site-specific hacks until we had contacted
the site author(s) and obtained an agreement from them to fix their
site.  At that point we could check in a temporary hack if fixing things
was going to take time.  I'm not sure we made this our official policy
but it got general agreement from those to whom I proposed it.  We used
this pattern when dealing with a Hotmail problem (see
http://googlechromereleases.blogspot.com/2009/01/stable-beta-update-
yahoo-mail-and.html ).

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/29

------------------------------------------------------------------------
On 2009-08-16T23:01:00+00:00 Hartman-wiki wrote:

This KHTML specific line for mediawiki is already removed upstream, but
it will take a LONG while before all the mediawiki installations are
going to be updated. As noted, not even Wikipedia itself has this
deployed yet at this time.

See: "* Remove five-year-old KHTMLFixes.css, which is unlikely to be
relevant anymore  and was causing problems."

in http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/RELEASE-
NOTES?revision=55124&view=markup

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/30

------------------------------------------------------------------------
On 2009-08-16T23:04:57+00:00 Hartman-wiki wrote:

specific revision:
http://svn.wikimedia.org/viewvc/mediawiki?view=rev&revision=53141

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/31

------------------------------------------------------------------------
On 2009-08-16T23:14:23+00:00 Dglazkov wrote:

(In reply to comment #30)
> This KHTML specific line for mediawiki is already removed upstream, but it 
> will
> take a LONG while before all the mediawiki installations are going to be
> updated. As noted, not even Wikipedia itself has this deployed yet at this
> time.
> 
> See: "* Remove five-year-old KHTMLFixes.css, which is unlikely to be relevant
> anymore  and was causing problems."
> 
> in
> http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/RELEASE-NOTES?revision=55124&view=markup

This is precisely the gist of the issue. We're not dealing with one
site, but a widely used software. This hack has also been duplicated
verbatim on many derivative projects, such as GForge and SpringWiki,
which makes evangelism effort a bit daunting.

The site-specific hack patch looks pretty good to me atm.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/32

------------------------------------------------------------------------
On 2009-08-16T23:24:42+00:00 Aryeh Gregor wrote:

This was due to ludicrously broken UA-sniffing on our part; sorry about
that.  For those who didn't catch it, in May 2004 someone committed a
workaround to MediaWiki for a KHTML bug.  Unfortunately, rather than
using version-based sniffing, he just assumed all KHTML versions would
have the bug forever -- KHTML was rather minor back then and it probably
didn't seem important.  So we ended up serving the fix to WebKit well
over five years later.

It came to light when I was trying out a switch to HTML 5, and the
strict doctype caused incorrect display in WebKit.  When I figured out
the problem I removed the check in r53141, which Derk-Jan linked to.
The fix will be in MediaWiki 1.16 and should go live on Wikipedia within
a few weeks, but you're going to have to handle it for other MediaWiki
installs for years, sadly.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/33

------------------------------------------------------------------------
On 2009-08-17T15:33:36+00:00 Aryeh Gregor wrote:

I got hold of the appropriate people just now, and Wikipedia is no
longer serving the broken CSS:

http://en.wikipedia.org/skins-1.5/monobook/KHTMLFixes.css

The fix should also be in MediaWiki 1.16.  That should theoretically be
released in a month, but might take longer.

Needless to say, though, there are a *lot* of MediaWiki installs out
there that don't keep up with updates.  If you guys aren't willing to
keep a site-specific hack in WebKit for a while, we could *maybe*
backport the fix to old versions -- normally we only backport security
fixes -- but we can't make people upgrade.  The breakage is pretty ugly,
with all content shoved down a large amount.

For future reference, the best place to reach us is wikitech-l:
<https://lists.wikimedia.org/mailman/listinfo/wikitech-l>.  Anything
posted there will be read by most Wikimedia sysadmins and MediaWiki
developers.  For real-time response, you can also go to #mediawiki (for
MediaWiki) or #wikimedia-tech (for Wikimedia site administration) on
freenode, but of course you'll reach fewer people that way.

Sorry about the problems we've caused.  Please let us know about any
future difficulties.  I've posted on wikitech-l to remind people to be
careful about browser sniffing in the future:

http://lists.wikimedia.org/pipermail/wikitech-l/2009-August/044767.html

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/34

------------------------------------------------------------------------
On 2009-08-17T16:48:23+00:00 Pkasting wrote:

(In reply to comment #34)
> Needless to say, though, there are a *lot* of MediaWiki installs out there 
> that
> don't keep up with updates.

My question would be whether these sites are high-profile enough that we
should check in a site-specific hack for them, and whether not checking
in would make it more likely that the site authors would update sooner.

To put it differently, if we do land this hack, what are the criteria
we'll use to decide when to revert it, and how will we remember to check
on them?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/35

------------------------------------------------------------------------
On 2009-08-17T17:21:19+00:00 Dglazkov wrote:

We chatted some more on #webkit and I believe the general consensus is
that we don't to land this patch. Wikipedia is now serving the hack-free
theme, which should serve as the right motivator for others to catch up.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/36

------------------------------------------------------------------------
On 2009-08-17T17:22:53+00:00 Aryeh Gregor wrote:

The largest single user of MediaWiki other than Wikimedia is wikia.com,
most likely.  Some other large wikis are listed here:

http://s23.org/wikistats/largest_html.php

The problem is more lots of little sites than a few big ones, I'd think.
MediaWiki is probably the most popular wiki software out there even if
you don't count Wikipedia.  For instance, my mother is an art historian
and has sometimes used a wiki meant to track university job openings in
19th century art history, which runs MediaWiki.  She was using Chrome
for a while and would undoubtedly summon me and ask for an explanation
if it randomly broke.  There are zillions of little sites like that.

I don't what your/WebKit's attitude is on maintaining compatibility vs.
cleaning out cruft, so I can't say what you should do.  Not having a fix
in place for, say, the next couple of years would certainly break a lot
of sites, that's all I can say.  We don't have a very good upgrade rate;
there are still a remarkable number of sites running three-year-old
copies of MediaWiki.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/37

------------------------------------------------------------------------
On 2009-08-17T20:11:07+00:00 Rniwa wrote:

(In reply to comment #36)
> We chatted some more on #webkit and I believe the general consensus is that we
> don't to land this patch. Wikipedia is now serving the hack-free theme, which
> should serve as the right motivator for others to catch up.

We should publicize that version 1.16 or later is required.  Or
otherwise people think it's WebKit/Safari/Chrome's fault and we
obviously don't want that.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/38

------------------------------------------------------------------------
On 2009-08-17T20:21:32+00:00 Mitz-6 wrote:

Fixed in <http://trac.webkit.org/projects/webkit/changeset/47383>.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/39

------------------------------------------------------------------------
On 2009-08-20T01:04:39+00:00 Ap-k wrote:

*** Bug 28372 has been marked as a duplicate of this bug. ***

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/40

------------------------------------------------------------------------
On 2009-09-13T22:23:47+00:00 Mitz-6 wrote:

The workaround doesn’t apply to yet older versions of MediaWiki (see 
<http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/skins/monobook/KHTMLFixes.css?view=log&pathrev=53140>)
 because:
1) The stylesheet has only one instead of two trailing newlines and
2) The stylesheet is loaded from a <link> element rather than an @import rule

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/41

------------------------------------------------------------------------
On 2009-09-14T14:46:45+00:00 Darin-m wrote:

Are there some sites that still have that older version of MediaWiki
running? Clearly it will be straightforward to broaden the workaround to
cover the other cases if there is a significant benefit to doing so and
at least one site to test with.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/42

------------------------------------------------------------------------
On 2009-09-14T16:03:24+00:00 Aryeh Gregor wrote:

Yes, it should be basically any MediaWiki site other than Wikipedia, due
to the <link> issue.  The change from @import to <link> only occurred in
<http://www.mediawiki.org/wiki/Special:Code/MediaWiki/52886>, which is
after the last stable release (1.15).  So look at almost any non-
Wikimedia, non-Wikia wiki that uses the default MonoBook skin, e.g.,
http://wikileaks.org/.  Wikileaks makes some effort to hide their
version, but it looks like it's based off 1.10, so they should exhibit
both problems (extra newline for <= 1.11, and <link> for <= 1.15).  I
can confirm the problem is visible there.

For that matter, you could also check almost any wiki from this list
that's not a Wikimedia or Wikia project:

http://s23.org/wikistats/largest_html.php?th=999&lines=999

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/43

------------------------------------------------------------------------
On 2009-09-18T07:55:21+00:00 Mitz-6 wrote:

(In reply to comment #42)
> Are there some sites that still have that older version of MediaWiki running?
> Clearly it will be straightforward to broaden the workaround to cover the 
> other
> cases if there is a significant benefit to doing so and at least one site to
> test with.

<http://wikileaks.org/> is one such site.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/44

------------------------------------------------------------------------
On 2009-09-28T02:05:44+00:00 Mitz-6 wrote:

Filed bug 29792.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/45

------------------------------------------------------------------------
On 2012-05-03T10:09:06+00:00 Rniwa wrote:

Unfortunately, 47 out of 200 top WikiMedia users are still using the
version 1.5 or older according to
http://s23.org/wikistats/largest_html.php.

It appears that we'll need to wait for another couple of years before we
can remove this work around.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/48

------------------------------------------------------------------------
On 2019-02-08T20:41:58+00:00 Ggaren wrote:

Maybe try again now?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/webkit/+bug/440788/comments/49

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/440788

Title:
  rendering error in epiphany-webkit

To manage notifications about this bug go to:
https://bugs.launchpad.net/epiphany-browser/+bug/440788/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to