Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

developer.apple.com - see bug description #8404

Closed
webcompat-bot opened this issue Jul 21, 2017 · 7 comments
Closed

developer.apple.com - see bug description #8404

webcompat-bot opened this issue Jul 21, 2017 · 7 comments

Comments

@webcompat-bot
Copy link

URL: https://developer.apple.com/

Browser / Version: Firefox 55.0
Operating System: Windows 10
Tested Another Browser: Yes

Problem type: Something else
Description: Left / Right arrow buttons don't scroll banner
Steps to Reproduce:

  1. Tried bringing back previous banner

From webcompat.com with ❤️

@MDTsai
Copy link

MDTsai commented Jul 24, 2017

Confirmed on Firefox 56 Linux. Move to needsdiagnosis-important.

@wisniewskit
Copy link
Member

This is a site bug. They're nesting an anchor tag (with an event handler) inside of a button:

<button class="paddlenav-arrow paddlenav-arrow-next" aria-label="Next">
    <a class="bx-next" href="" onclick="s_objectID=&quot;https://developer.apple.com/_4&quot;;return this.s_oc?this.s_oc(e):true">Next</a>
</button

This is not valid HTML, and will not work interoperably. It's also pointless here, and has a trivial fix; just change the "button" into some other tag (perhaps a div):

<div class="paddlenav-arrow paddlenav-arrow-next" aria-label="Next">
    <a class="bx-next" href="" onclick="s_objectID=&quot;https://developer.apple.com/_4&quot;;return this.s_oc?this.s_oc(e):true">Next</a>
</div>

@karlcow
Copy link
Member

karlcow commented Aug 30, 2017

This is also a duplicate of https://bugzilla.mozilla.org/show_bug.cgi?id=1089326

@jonathandavis @rniwa Could you help us find the right person at Apple for this?

@rniwa
Copy link

rniwa commented Sep 5, 2017

Will follow up. Thanks for reporting the bug.

@rniwa
Copy link

rniwa commented Sep 6, 2017

We've forwarded this bug report to the relevant teams.

@rniwa
Copy link

rniwa commented Sep 8, 2017

The issue should be fixed now.

@wisniewskit
Copy link
Member

Yes, this appears to be fixed now. Thanks!

@karlcow karlcow added this to the fixed milestone Oct 30, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants