unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#16244: 24.3.50; eww does not show SVG images in HTML files
@ 2013-12-24 18:04 Eli Zaretskii
  2013-12-24 20:21 ` Lars Ingebrigtsen
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Eli Zaretskii @ 2013-12-24 18:04 UTC (permalink / raw)
  To: 16244

Steps to reproduce:

  emacs -Q
  M-x eww RET
  http://www.w3.org/Graphics/SVG/WG/wiki/Test_Suite_Overview RET
  Go down to the link saying "* HTML using <object>", hit RET
  In the page that is displayed, hit RET on any link

Result: you are presented with a page where a PNG image is displayed
correctly, while an SVG image near it is not displayed; instead its
file name is shown.

This is in Emacs compiled with librsvg support, and visiting that SVG
file with "C-x C-f" displays the SVG image correctly.



In GNU Emacs 24.3.50.184 (i686-pc-mingw32)
 of 2013-12-24 on HOME-C4E4A596F7
Bzr revision: 115732 eliz@gnu.org-20131224172356-900s7cuzhvmg863t
Windowing system distributor `Microsoft Corp.', version 5.1.2600
Configured using:
 `configure --prefix=/d/usr --enable-checking=yes,glyphs 'CFLAGS=-O0
 -gdwarf-2 -g3''

Important settings:
  value of $LANG: ENU
  locale-coding-system: cp1255

Major mode: Lisp Interaction

Minor modes in effect:
  tooltip-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Recent input:
M-x e <backspace> r e p o r t - e m a c s - b u g 
<return>

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.

Load-path shadows:
None found.

Features:
(shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml
easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231
mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums
mm-util help-fns mail-prsvr mail-utils time-date tooltip electric
uniquify ediff-hook vc-hooks lisp-float-type mwheel dos-w32 ls-lisp
w32-common-fns disp-table w32-win w32-vars tool-bar dnd fontset image
regexp-opt fringe tabulated-list newcomment lisp-mode prog-mode register
page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock
font-lock syntax facemenu font-core frame cham georgian utf-8-lang
misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew
greek romanian slovak czech european ethiopic indian cyrillic chinese
case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer nadvice
loaddefs button faces cus-face macroexp files text-properties overlay
sha1 md5 base64 format env code-pages mule custom widget
hashtable-print-readable backquote make-network-process w32notify w32
multi-tty emacs)





^ permalink raw reply	[flat|nested] 9+ messages in thread

* bug#16244: 24.3.50; eww does not show SVG images in HTML files
  2013-12-24 18:04 bug#16244: 24.3.50; eww does not show SVG images in HTML files Eli Zaretskii
@ 2013-12-24 20:21 ` Lars Ingebrigtsen
  2013-12-24 20:57   ` Eli Zaretskii
  2014-03-19  1:25 ` bug#16244: Object is an old tag Reuben Thomas
  2014-11-13 16:21 ` bug#16244: 24.3.50; eww does not show SVG images in HTML files Lars Magne Ingebrigtsen
  2 siblings, 1 reply; 9+ messages in thread
From: Lars Ingebrigtsen @ 2013-12-24 20:21 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 16244

Eli Zaretskii <eliz@gnu.org> writes:

>   emacs -Q
>   M-x eww RET
>   http://www.w3.org/Graphics/SVG/WG/wiki/Test_Suite_Overview RET
>   Go down to the link saying "* HTML using <object>", hit RET
>   In the page that is displayed, hit RET on any link
>
> Result: you are presented with a page where a PNG image is displayed
> correctly, while an SVG image near it is not displayed; instead its
> file name is shown.

Hm.  Looking at the source code, this is stuff like:

<object data="../../svg/animate-dom-01-f.svg" width="480" height="360" type="image/svg+xml"><p style="font-size:300%;color:red">FAIL</p></object>

Adding support for this would be pretty simple, I think (just treat this
like an <img> tag, more or less), but is this a bug fix or a new
feature?  >"?  If it's a bug, I can whip up a fix...

-- 
(domestic pets only, the antidote for overdose, milk.)
  bloggy blog http://lars.ingebrigtsen.no/





^ permalink raw reply	[flat|nested] 9+ messages in thread

* bug#16244: 24.3.50; eww does not show SVG images in HTML files
  2013-12-24 20:21 ` Lars Ingebrigtsen
@ 2013-12-24 20:57   ` Eli Zaretskii
  2013-12-24 21:04     ` Lars Ingebrigtsen
  0 siblings, 1 reply; 9+ messages in thread
From: Eli Zaretskii @ 2013-12-24 20:57 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: 16244

> From: Lars Ingebrigtsen <larsi@gnus.org>
> Cc: 16244@debbugs.gnu.org
> Date: Tue, 24 Dec 2013 21:21:54 +0100
> 
> Hm.  Looking at the source code, this is stuff like:
> 
> <object data="../../svg/animate-dom-01-f.svg" width="480" height="360" type="image/svg+xml"><p style="font-size:300%;color:red">FAIL</p></object>
> 
> Adding support for this would be pretty simple, I think (just treat this
> like an <img> tag, more or less)

Yes, something like that.  I understand this is an embedded object.

> but is this a bug fix or a new feature?  >"?  If it's a bug, I can
> whip up a fix...

Well, this is a bug report, no?





^ permalink raw reply	[flat|nested] 9+ messages in thread

* bug#16244: 24.3.50; eww does not show SVG images in HTML files
  2013-12-24 20:57   ` Eli Zaretskii
@ 2013-12-24 21:04     ` Lars Ingebrigtsen
  2013-12-25  3:49       ` Eli Zaretskii
  0 siblings, 1 reply; 9+ messages in thread
From: Lars Ingebrigtsen @ 2013-12-24 21:04 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 16244

Eli Zaretskii <eliz@gnu.org> writes:

>> but is this a bug fix or a new feature?  >"?  If it's a bug, I can
>> whip up a fix...
>
> Well, this is a bug report, no?

Are you saying that all missing features are bugs?  >"?

-- 
(domestic pets only, the antidote for overdose, milk.)
  bloggy blog http://lars.ingebrigtsen.no/





^ permalink raw reply	[flat|nested] 9+ messages in thread

* bug#16244: 24.3.50; eww does not show SVG images in HTML files
  2013-12-24 21:04     ` Lars Ingebrigtsen
@ 2013-12-25  3:49       ` Eli Zaretskii
  2013-12-25  8:20         ` Lars Ingebrigtsen
  0 siblings, 1 reply; 9+ messages in thread
From: Eli Zaretskii @ 2013-12-25  3:49 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: 16244

> From: Lars Ingebrigtsen <larsi@gnus.org>
> Cc: 16244@debbugs.gnu.org
> Date: Tue, 24 Dec 2013 22:04:32 +0100
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> >> but is this a bug fix or a new feature?  >"?  If it's a bug, I can
> >> whip up a fix...
> >
> > Well, this is a bug report, no?
> 
> Are you saying that all missing features are bugs?  >"?

I'm saying that if one image is displayed while another isn't, it's a
bug.





^ permalink raw reply	[flat|nested] 9+ messages in thread

* bug#16244: 24.3.50; eww does not show SVG images in HTML files
  2013-12-25  3:49       ` Eli Zaretskii
@ 2013-12-25  8:20         ` Lars Ingebrigtsen
  0 siblings, 0 replies; 9+ messages in thread
From: Lars Ingebrigtsen @ 2013-12-25  8:20 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 16244

Eli Zaretskii <eliz@gnu.org> writes:

> I'm saying that if one image is displayed while another isn't, it's a
> bug.

HTML is an ever-expanding standard, and adding support for new HTML
features is adding support for new HTML features.

Stefan, your call.

-- 
(domestic pets only, the antidote for overdose, milk.)
  bloggy blog http://lars.ingebrigtsen.no/





^ permalink raw reply	[flat|nested] 9+ messages in thread

* bug#16244: Object is an old tag
  2013-12-24 18:04 bug#16244: 24.3.50; eww does not show SVG images in HTML files Eli Zaretskii
  2013-12-24 20:21 ` Lars Ingebrigtsen
@ 2014-03-19  1:25 ` Reuben Thomas
  2014-11-13 16:21 ` bug#16244: 24.3.50; eww does not show SVG images in HTML files Lars Magne Ingebrigtsen
  2 siblings, 0 replies; 9+ messages in thread
From: Reuben Thomas @ 2014-03-19  1:25 UTC (permalink / raw)
  To: 16244

[-- Attachment #1: Type: text/plain, Size: 296 bytes --]

I see this is still waiting for Stefan's attention, but meanwhile I could
point out that the "object" tag  has been in HTML for a very long time (at
least since HTML 2.0), so it's not a new feature. Lars is right though that
for images it's pretty similar to an img tag.

-- 
http://rrt.sc3d.org

[-- Attachment #2: Type: text/html, Size: 421 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* bug#16244: 24.3.50; eww does not show SVG images in HTML files
  2013-12-24 18:04 bug#16244: 24.3.50; eww does not show SVG images in HTML files Eli Zaretskii
  2013-12-24 20:21 ` Lars Ingebrigtsen
  2014-03-19  1:25 ` bug#16244: Object is an old tag Reuben Thomas
@ 2014-11-13 16:21 ` Lars Magne Ingebrigtsen
  2014-11-13 17:19   ` Eli Zaretskii
  2 siblings, 1 reply; 9+ messages in thread
From: Lars Magne Ingebrigtsen @ 2014-11-13 16:21 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 16244

Eli Zaretskii <eliz@gnu.org> writes:

> Steps to reproduce:
>
>   emacs -Q
>   M-x eww RET
>   http://www.w3.org/Graphics/SVG/WG/wiki/Test_Suite_Overview RET
>   Go down to the link saying "* HTML using <object>", hit RET
>   In the page that is displayed, hit RET on any link

Implemented now on trunk.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 9+ messages in thread

* bug#16244: 24.3.50; eww does not show SVG images in HTML files
  2014-11-13 16:21 ` bug#16244: 24.3.50; eww does not show SVG images in HTML files Lars Magne Ingebrigtsen
@ 2014-11-13 17:19   ` Eli Zaretskii
  0 siblings, 0 replies; 9+ messages in thread
From: Eli Zaretskii @ 2014-11-13 17:19 UTC (permalink / raw)
  To: Lars Magne Ingebrigtsen; +Cc: 16244

> From: Lars Magne Ingebrigtsen <larsi@gnus.org>
> Cc: 16244@debbugs.gnu.org
> Date: Thu, 13 Nov 2014 17:21:03 +0100
> 
> Eli Zaretskii <eliz@gnu.org> writes:
> 
> > Steps to reproduce:
> >
> >   emacs -Q
> >   M-x eww RET
> >   http://www.w3.org/Graphics/SVG/WG/wiki/Test_Suite_Overview RET
> >   Go down to the link saying "* HTML using <object>", hit RET
> >   In the page that is displayed, hit RET on any link
> 
> Implemented now on trunk.

Great, thanks!





^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2014-11-13 17:19 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-24 18:04 bug#16244: 24.3.50; eww does not show SVG images in HTML files Eli Zaretskii
2013-12-24 20:21 ` Lars Ingebrigtsen
2013-12-24 20:57   ` Eli Zaretskii
2013-12-24 21:04     ` Lars Ingebrigtsen
2013-12-25  3:49       ` Eli Zaretskii
2013-12-25  8:20         ` Lars Ingebrigtsen
2014-03-19  1:25 ` bug#16244: Object is an old tag Reuben Thomas
2014-11-13 16:21 ` bug#16244: 24.3.50; eww does not show SVG images in HTML files Lars Magne Ingebrigtsen
2014-11-13 17:19   ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).