All snark aside, I wonder what the rationale was for doing this. It'd be a shame to load a website in a browser 20 years from now, only to see the site render incorrectly due to no-longer-implemented tags. Next, ? It's tough, obviously, because we can't have cruft build up all over. But this seems like a fairly straightforward case that a browser could shim out in JavaScript by default. Blink is a pretty straightforw…
The tag has been deprecated for 13 years.
Blink tag removed from Firefox
81–90 of 99 posts
Re: Blink tag removed from Firefox
#82Earlier quoted context omitted.
> But seeing tables being used for layout annoys me far more than the blink tag. How come? CSS positioning is pretty unintuitive, and sometimes it's just easier to get something working with tables. If the end results look fine, what's the problem? Table-based layouts aren't in-your-face like the blink tag was. Oh, and don't view-source on HN ;)
My problems are mostly how easy it is to get lost if you're dealing with nested tables within tables (especially inside templates), and that they have to be completely read before rendering... although that may no longer necessarily be an issue with modern browsers. I find divs and spans easier myself but I guess, yeah, at the end of the day if it looks fine and it loads fine then it's fine. Too much pain from hand-c…
Re: Blink tag removed from Firefox
#83Re: Blink tag removed from Firefox
#84Earlier quoted context omitted.
Oddly enough Chrome/Blink still has the String.prototype.blink method to create a blink tag from a string. If I recall correctly it's actually part of an ES (not DOM) standard.
Wow. Because this surprised me so much, I just found out that if you open up a node REPL and type 'hello'.blink() you get ' Hello ' returned. So I guess it's an ES thing and it boggles my mind. I was trying to find the ES standard where it's specified but I'll settle for this[1] instead. Interestingly enough you have quite a few HTML wrapping functions as part of the spec. [1]: http://javascript.spec.whatwg.org/#stri…
Re: Blink tag removed from Firefox
#85Re: Blink tag removed from Firefox
#86Earlier quoted context omitted.
If you don't like the direction the Mozilla Corporation is taking Firefox, you're free to disable automatic updates, revert to a previous version of the browser, or even fork your own version of Firefox. It's not tyrannical to want new versions of Firefox to present a better user experience and be less confusing to everyday users.
... and not receive security patches.
Re: Blink tag removed from Firefox
#87Aww, man. I love using (in FF) and (in Chrome) when giving presentations, they're such crowd pleasers. At least Chrome still has , I used it in a talk just 2 days ago. Hope they don't follow FF's lead.
Re: Blink tag removed from Firefox
#88Re: Blink tag removed from Firefox
#89Earlier quoted context omitted.
Wow. Because this surprised me so much, I just found out that if you open up a node REPL and type 'hello'.blink() you get ' Hello ' returned. So I guess it's an ES thing and it boggles my mind. I was trying to find the ES standard where it's specified but I'll settle for this[1] instead. Interestingly enough you have quite a few HTML wrapping functions as part of the spec. [1]: http://javascript.spec.whatwg.org/#stri…
What could possibly be the use of that.
var str="•";
document.write(str.blink());
That would make a blinking red dot. It'd be good for status lights, I guess.Re: Blink tag removed from Firefox
#90Earlier quoted context omitted.
My problems are mostly how easy it is to get lost if you're dealing with nested tables within tables (especially inside templates), and that they have to be completely read before rendering... although that may no longer necessarily be an issue with modern browsers. I find divs and spans easier myself but I guess, yeah, at the end of the day if it looks fine and it loads fine then it's fine. Too much pain from hand-c…
Isn't Valid?