emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#30546: closed (27.0.50; shr: span tag with href at


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#30546: closed (27.0.50; shr: span tag with href attribute)
Date: Wed, 21 Feb 2018 09:22:02 +0000

Your message dated Wed, 21 Feb 2018 18:21:06 +0900
with message-id <address@hidden>
and subject line Re: bug#30546: 27.0.50; shr: span tag with href attribute
has caused the debbugs.gnu.org bug report #30546,
regarding 27.0.50; shr: span tag with href attribute
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
30546: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=30546
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: 27.0.50; shr: span tag with href attribute Date: Tue, 20 Feb 2018 18:52:37 +0900 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (x86_64-unknown-cygwin)
Hi,

Though it is not necessarily a bug[1], Firefox renders this as
a link but shr doesn't:

<span href="https://www.example.com"; style="font-size:...">Foo</span>

Jidanni wrote me that some html mails he receives contain such
forms, and I tried making shr support it as the patch attached
below.  I'm not quite sure whether it causes a trouble but I'm
going to try it for some time.

Thanks.

[1] 
<https://stackoverflow.com/questions/46889226/is-a-span-tag-with-a-href-attribute-considered-valid>

--- shr.el~     2018-01-15 21:54:49.635451500 +0000
+++ shr.el      2018-02-20 09:47:39.198990800 +0000
@@ -1751,3 +1751,5 @@
 (defun shr-tag-span (dom)
-  (shr-generic dom))
+  (if (dom-attr dom 'href)
+      (shr-tag-a (cons 'a (cdr dom)))
+    (shr-generic dom)))
 

--- End Message ---
--- Begin Message --- Subject: Re: bug#30546: 27.0.50; shr: span tag with href attribute Date: Wed, 21 Feb 2018 18:21:06 +0900 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (x86_64-unknown-cygwin)
On Wed, 21 Feb 2018 09:56:16 +0100, Lars Ingebrigtsen wrote:
> The email in question had the structure

> <a href=...><table>...<span href=...></a>

> So Firefox treats the entire table as a link.  The span href seems to be
> ignored.

I realized that the url values of <a href=...> and <span href=...>
are the same.  I tried changing the value of <span href=...> and
verified Firefox doesn't use it as a separate link.  Thank you for
investigating it.  I'm closing this bug.

Regards,


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]