Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Time for Chrome to go

Time for Chrome to go

Scheduled Pinned Locked Moved The Lounge
javascripthtmlcsscollaborationhelp
91 Posts 49 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R realJSOP

    gggustafson wrote:

    My spellchecker let me down.

    Actually, it didn't. "looser" is a real word, so the spell-checker was correctly doing it's job. What we need in browsers is a lexical parser that can determine what you're trying to say and indicate where you might want to use a different word. This would be a boon to people that don't know when to use 0) "there", "their", and "they're" 1) "too", "to", and "two" 2) "it's" and "its" 3) "see", "sea", and "si". 4) "site" and "sight" 5) "dough" and "doe" 6) "so" and "sew" BTW, why does "dough" sound like "doe", but "tough" doesn't sound like "toe"? It's no wonder English is so hard to learn...

    ".45 ACP - because shooting twice is just silly" - JSOP, 2010
    -----
    You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
    -----
    "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass." - Dale Earnhardt, 1997

    R Offline
    R Offline
    Rob Grainger
    wrote on last edited by
    #54

    (Pedantry warning) You're mixing terms here. A lexical analyser does the lexical level: so the spell checker already does that. A parser (grammar analyser) checks that the usage is valid. We need grammatical analysis that is able to check for "close" lexemes (words).

    1 Reply Last reply
    0
    • L Lost User

      :thumbsup: IE is the better option. I like it. Sometimes even firefox does not position correctly. ;P

      I only read newbie introductory dummy books.

      R Offline
      R Offline
      Rob Grainger
      wrote on last edited by
      #55

      Its odd then that IE is the browser that consistently scores lower on standards compliance. I know there's a lot of MS developers here, but to try and pretend that because something doesn't render like IE it is broken is shocking. IE is the single browser that breaks web compatibility more than all others, although improving from IE9 onwards.

      1 Reply Last reply
      0
      • R realJSOP

        gggustafson wrote:

        Google, you have a looser on your hands.

        A looser what? I suspect you meant "loser".

        ".45 ACP - because shooting twice is just silly" - JSOP, 2010
        -----
        You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
        -----
        "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass." - Dale Earnhardt, 1997

        G Offline
        G Offline
        giuchici
        wrote on last edited by
        #56

        Very good! However, it took a while until somebody noticed. I personally just concluded what was meant from context.

        giuchici

        1 Reply Last reply
        0
        • M musefan

          Chrome is my primary browser, so when I develop web apps then Chrome is the first one to be tested for layout - so it works exactly as planned. So far this has not been a issue, yes there have been differences that require different CSS classes for some parts, but these specific parts usually require slightly different code for all the 5 browsers you mentioned anyway. So while yes, it may be another browser to test in, it is just a small price to pay for a great browser. And before you say how bad Chrome is, then why is it the other browsers (namely IE) want to look like it so much? And lest we forget Chrome is currently winning the HTML 5 compliant race[^]

          If my jokes make me laugh, then I have already succeeded with 100% of my target audience

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #57

          How can Chrome be winning a race that doesn't have a finish line? The standards aren't set to even be completed until 2020. That is really all one needs to know about how goofy web development has become.

          1 Reply Last reply
          0
          • B Bonesnap

            What sort of things are you doing that mess up in Chrome? I've never, ever had a problem with pages rendering in Chrome, whether it was a project at work or a project at home. Every once in a while I hear someone complain about pages rendering in Chrome but I have yet to come across a single problem. :confused:

            G Offline
            G Offline
            gggustafson
            wrote on last edited by
            #58

            I have just completed an Article in which I dearly wanted to dynamically create a stylesheet in the Javascript function that initializes the web page. I followed the following track:

            function create_stylesheet ( )
              {
              var created = false;
              var head = document.getElementsByTagName ( 'head' ) [ 0 ];
              
              if ( head )
                {
                var style = document.createElement ( 'style' );
                
                if ( style )
                  {
                  var CSS_string = new String ( );
            
                  CSS_string =
                    ".green_link," +
                    ".revised_green_link" +
                      "{" +
                      "}" +
                    ".abbreviation_alone" +
                      "{" +
                      "display:none;" +
                      "}" +
                    ".abbreviation_definition" +
                      "{" +
                      "display:inline;" +
                      "}" + ...
            
                  style.type = "text/css";
                  style.rel = "stylesheet";
                  
                  if ( style.styleSheet )             // IE
                    { 
                    style.styleSheet.cssText = CSS_string;
                    }
                  else                                // W3C
                    { 
                    var CSS_text = document.createTextNode ( CSS_string );
                    style.appendChild ( CSS_text );
                    }
            
                  head.appendChild ( style );
                  created = true;
                  }
                }
              
              return ( created );
              }
            

            The two rules, abbreviation_alone and abbreviation_definition were then to be retrieved from the page stylesheets and pointed to by two Javascript global variables. Although Firefox, IE, Opera, and Safari all performed as desired, Chrome did not. I had to revert to an external CSS file. The only reason for the dynamic stylesheet was to avoid having two files (.js and .css) included in the project. Please see DOM Style Sheets for further details. The Security in Depth: Local Web Pages describes a "feature" that has effectively crippled users of earlier Chrome versions. As a result, folks are suggesting a move away from Chrome. HTH Gus

            N M 2 Replies Last reply
            0
            • G gggustafson

              I'm sorry, Google. The time has come to tell you that you need to withdraw Chrome. Although I love your search engine, I have grown to dislike your browser. Why? First, as a developer, I am again facing the "browser wars." Something that works well in Firefox, IE, Opera, and Safari, requires an inordinate amount of time to get working in Chrome. And I've tried - tried very hard to make my HTML, CSS, and Javascript work across browsers. But usually I find myself Googling for Chrome solutions. Secondly, the Google Chrome development team is arrogant. I understand the frustration that the team may feel in trying to keep standards compliant, but to reject a large percentage of the development community requests for repair is arrogant and ill-conceived. Standards can be wrong! They are the creations of humans and are fraught with misinterpretations and possibly downright errors. I speak from personal experience as a former member of the X3J9 standards technical committee. Google, you have a looser on your hands. And I think that is true in both the marketplace (ranking just above Bing) as well as in the developer community. So I suggest that you fix it or throw it.

              A Offline
              A Offline
              alexdresko
              wrote on last edited by
              #59

              And that's why I've never even installed Chrome.

              I'm not a player, I just code a lot! Alex Dresko

              1 Reply Last reply
              0
              • M musefan

                I think you have lost the point I was making. Firstly, it is not easier to use the same high quality English because it means you have to go slower and/or re-read your posts. My point isn't write completely different words and it is not a problem. I was simply talking about words that sound the same. Readers know what is intended when I use there, their or they're. They understand because they apply the context on the rest of the sentence, just the same as would be applied to determine which version to use. All my sounds like mistakes are automatic, therefore I do not forget how to use them properly because I don'y realise I am making the mistakes. I don't need to

                If my jokes make me laugh, then I have already succeeded with 100% of my target audience

                B Offline
                B Offline
                beeseearr
                wrote on last edited by
                #60

                I think you're missing his point. You would not need to go slower and re-read your posts if you used the same high-quality English everywhere. It is because you have the two versions of typing that it requires extra effort on your part to type correctly the first time through. (Granted, mistakes will still be made, but the frequency should be a lot lower.)

                N 1 Reply Last reply
                0
                • J Joe Simes

                  Dalek Dave wrote:

                  musefan wrote:

                  Apple will certainly have a looser something when Google finish with them

                  Stool?

                  Pushed in?

                  The environment that nurtures creative programmers kills management and marketing types - and vice versa. - Orson Scott Card

                  A Offline
                  A Offline
                  austin hamman
                  wrote on last edited by
                  #61

                  its rare for me to have something which works on FF but not Chrome, but very common to have something which works in firefox and chrome but not IE. usually i find i develop something in FF (mostly because of firebug which is better than ie and chrome's built in debuggers) then i work on making it work in chrome (usually works right out of the box, sometimes i need a few minor tweaks because i used FF specific things) then IE (which is a nightmare that adds another month to any development project)

                  1 Reply Last reply
                  0
                  • G gggustafson

                    I'm sorry, Google. The time has come to tell you that you need to withdraw Chrome. Although I love your search engine, I have grown to dislike your browser. Why? First, as a developer, I am again facing the "browser wars." Something that works well in Firefox, IE, Opera, and Safari, requires an inordinate amount of time to get working in Chrome. And I've tried - tried very hard to make my HTML, CSS, and Javascript work across browsers. But usually I find myself Googling for Chrome solutions. Secondly, the Google Chrome development team is arrogant. I understand the frustration that the team may feel in trying to keep standards compliant, but to reject a large percentage of the development community requests for repair is arrogant and ill-conceived. Standards can be wrong! They are the creations of humans and are fraught with misinterpretations and possibly downright errors. I speak from personal experience as a former member of the X3J9 standards technical committee. Google, you have a looser on your hands. And I think that is true in both the marketplace (ranking just above Bing) as well as in the developer community. So I suggest that you fix it or throw it.

                    R Offline
                    R Offline
                    Reelix
                    wrote on last edited by
                    #62

                    http://html5test.com/[^] According to this site, the latest Dev build of Chrome is more compliant than any other offical / dev build of any other browser ;P

                    -= Reelix =-

                    G 1 Reply Last reply
                    0
                    • G gggustafson

                      I'm sorry, Google. The time has come to tell you that you need to withdraw Chrome. Although I love your search engine, I have grown to dislike your browser. Why? First, as a developer, I am again facing the "browser wars." Something that works well in Firefox, IE, Opera, and Safari, requires an inordinate amount of time to get working in Chrome. And I've tried - tried very hard to make my HTML, CSS, and Javascript work across browsers. But usually I find myself Googling for Chrome solutions. Secondly, the Google Chrome development team is arrogant. I understand the frustration that the team may feel in trying to keep standards compliant, but to reject a large percentage of the development community requests for repair is arrogant and ill-conceived. Standards can be wrong! They are the creations of humans and are fraught with misinterpretations and possibly downright errors. I speak from personal experience as a former member of the X3J9 standards technical committee. Google, you have a looser on your hands. And I think that is true in both the marketplace (ranking just above Bing) as well as in the developer community. So I suggest that you fix it or throw it.

                      N Offline
                      N Offline
                      Narud Shiro
                      wrote on last edited by
                      #63

                      Why we have to be worried about the browser when there are amazings 3rd part components fully cross browser compatible? Since I use one of them, I only have to think about which browser would runs faster the apps, instead of think about an app could run in different browsers. :-D

                      1 Reply Last reply
                      0
                      • G gggustafson

                        I have just completed an Article in which I dearly wanted to dynamically create a stylesheet in the Javascript function that initializes the web page. I followed the following track:

                        function create_stylesheet ( )
                          {
                          var created = false;
                          var head = document.getElementsByTagName ( 'head' ) [ 0 ];
                          
                          if ( head )
                            {
                            var style = document.createElement ( 'style' );
                            
                            if ( style )
                              {
                              var CSS_string = new String ( );
                        
                              CSS_string =
                                ".green_link," +
                                ".revised_green_link" +
                                  "{" +
                                  "}" +
                                ".abbreviation_alone" +
                                  "{" +
                                  "display:none;" +
                                  "}" +
                                ".abbreviation_definition" +
                                  "{" +
                                  "display:inline;" +
                                  "}" + ...
                        
                              style.type = "text/css";
                              style.rel = "stylesheet";
                              
                              if ( style.styleSheet )             // IE
                                { 
                                style.styleSheet.cssText = CSS_string;
                                }
                              else                                // W3C
                                { 
                                var CSS_text = document.createTextNode ( CSS_string );
                                style.appendChild ( CSS_text );
                                }
                        
                              head.appendChild ( style );
                              created = true;
                              }
                            }
                          
                          return ( created );
                          }
                        

                        The two rules, abbreviation_alone and abbreviation_definition were then to be retrieved from the page stylesheets and pointed to by two Javascript global variables. Although Firefox, IE, Opera, and Safari all performed as desired, Chrome did not. I had to revert to an external CSS file. The only reason for the dynamic stylesheet was to avoid having two files (.js and .css) included in the project. Please see DOM Style Sheets for further details. The Security in Depth: Local Web Pages describes a "feature" that has effectively crippled users of earlier Chrome versions. As a result, folks are suggesting a move away from Chrome. HTH Gus

                        N Offline
                        N Offline
                        Narud Shiro
                        wrote on last edited by
                        #64

                        Have you consider use jQuery? It would make you easier the management of the DOM with js, and it's cross browser compatible :)

                        G 1 Reply Last reply
                        0
                        • N Narud Shiro

                          Have you consider use jQuery? It would make you easier the management of the DOM with js, and it's cross browser compatible :)

                          G Offline
                          G Offline
                          gggustafson
                          wrote on last edited by
                          #65

                          Although jQuery may be an answer, it's not the answer - fix Chrome!

                          1 Reply Last reply
                          0
                          • G gggustafson

                            I'm sorry, Google. The time has come to tell you that you need to withdraw Chrome. Although I love your search engine, I have grown to dislike your browser. Why? First, as a developer, I am again facing the "browser wars." Something that works well in Firefox, IE, Opera, and Safari, requires an inordinate amount of time to get working in Chrome. And I've tried - tried very hard to make my HTML, CSS, and Javascript work across browsers. But usually I find myself Googling for Chrome solutions. Secondly, the Google Chrome development team is arrogant. I understand the frustration that the team may feel in trying to keep standards compliant, but to reject a large percentage of the development community requests for repair is arrogant and ill-conceived. Standards can be wrong! They are the creations of humans and are fraught with misinterpretations and possibly downright errors. I speak from personal experience as a former member of the X3J9 standards technical committee. Google, you have a looser on your hands. And I think that is true in both the marketplace (ranking just above Bing) as well as in the developer community. So I suggest that you fix it or throw it.

                            S Offline
                            S Offline
                            Sasha Laurel
                            wrote on last edited by
                            #66

                            With all of the statistics and pedantic arguments, it feels like the point is being missed. Chrome is a pain for many of us, and it doesn't really feel like we should have to "tip-toe" through the css just to make things look right. Also, arrogance from the dev team is inexcusable, and merely adds to the stereotype that programmers are prima-donna crybabies. My personal opinion is that Chrome sucks, it thinks it knows best, and it really doesn't. I only have it installed because I have to support it to some degree. The call to google remains, fix it, isn't that why you have the luxury of being perpetually "beta"? Throw the web programmers a bone and support existing layouts before trying to forge ahead with an html 5 spec that is far from mature.

                            G 1 Reply Last reply
                            0
                            • R Reelix

                              http://html5test.com/[^] According to this site, the latest Dev build of Chrome is more compliant than any other offical / dev build of any other browser ;P

                              -= Reelix =-

                              G Offline
                              G Offline
                              GenJerDan
                              wrote on last edited by
                              #67

                              So? A browser can be 100% compliant and it won't mean a thing if the sites visited are not written to the standard and display like kaka because of it. And if you think anyone is going to spend the time and money to fix their websites to make Chrome happy... Sure, if you're starting from scratch creating a site, it's no big deal. But to redo everything you already have?

                              Build a man a fire, and he'll be warm for a day. Set a man on fire, and he'll be warm for the rest of his life. My Mu[sic] My Films My Windows Programs, etc.

                              1 Reply Last reply
                              0
                              • G gggustafson

                                I guess I should have stated "Most US web pages...." In my experience developing US business and US Government sites since 2005, all sites were developed using Visual Studio and were targeted at IE (normally 7 or above). Of course, there may be exceptions, but in my experience, that's the fact.

                                M Offline
                                M Offline
                                Mark J Miller
                                wrote on last edited by
                                #68

                                I'm sorry, but most sites are not developed using VS/IIS. Apache has far more market share than IIS. My experience has been similar to yours, all my jobs since 2000 have been on the MS stack, but there are still more java jobs than C# (Dice survey)[^] and apache leads IIS in market share (http://news.netcraft.com/archives/2011/02/15/february-2011-web-server-survey.html[^]) I don't see how you can make that claim. And anecdotally, I know MS developers who develop using FF or Chrome because IE's developer tools were so late to the game and in my experience haven't been as good as the latter two. So given the apache statistics (the java link is a stretch I admit since that doesn't directly correlate with web pages) and the fact that not all IIS developers develop using IE I'd say that your claims are not factual at all.

                                Code responsibly: OWASP.org Mark's blog: www.developMENTALmadness.com Bill Cosby - "A word to the wise ain't necessary - it's the stupid ones that need the advice."

                                G 1 Reply Last reply
                                0
                                • S Sasha Laurel

                                  With all of the statistics and pedantic arguments, it feels like the point is being missed. Chrome is a pain for many of us, and it doesn't really feel like we should have to "tip-toe" through the css just to make things look right. Also, arrogance from the dev team is inexcusable, and merely adds to the stereotype that programmers are prima-donna crybabies. My personal opinion is that Chrome sucks, it thinks it knows best, and it really doesn't. I only have it installed because I have to support it to some degree. The call to google remains, fix it, isn't that why you have the luxury of being perpetually "beta"? Throw the web programmers a bone and support existing layouts before trying to forge ahead with an html 5 spec that is far from mature.

                                  G Offline
                                  G Offline
                                  gggustafson
                                  wrote on last edited by
                                  #69

                                  Maybe I should have written my comments using your comments. They are much more succinct and to the point. Thanks, Gus

                                  1 Reply Last reply
                                  0
                                  • Q QuiJohn

                                    Gregory.Gadow wrote:

                                    A lot depends on your source. The browser statistics[^] for the W3 schools shows that, as of May, 2011, IE users made up only 24.9% of their visitor base. Firefox was used by 42.4% of their visitors, and Chrome was 25.6%. These stats are taken directly from the site's visitor logs.

                                    Sure, but isn't that expected at a site like w3schools? They're not exactly your average web users. I'm sure the stats for espn.com and facebook look a good deal different.


                                    He said, "Boy I'm just old and lonely, But thank you for your concern, Here's wishing you a Happy New Year." I wished him one back in return.

                                    M Offline
                                    M Offline
                                    Mark J Miller
                                    wrote on last edited by
                                    #70

                                    Yeah, but W3 schools targets developers and the link was targeted at the comment that most sites are developed using MS tools, specifically IE. This shows that the default (an assumption based on what they are using to visit the W3 site) browser for most developers is not IE. It might be a stretch but I'm willing to bet that developers use their default browser for development and then follow up with other browsers to ensure compatibility afterwards.

                                    Code responsibly: OWASP.org Mark's blog: www.developMENTALmadness.com Bill Cosby - "A word to the wise ain't necessary - it's the stupid ones that need the advice."

                                    1 Reply Last reply
                                    0
                                    • M Mark J Miller

                                      I'm sorry, but most sites are not developed using VS/IIS. Apache has far more market share than IIS. My experience has been similar to yours, all my jobs since 2000 have been on the MS stack, but there are still more java jobs than C# (Dice survey)[^] and apache leads IIS in market share (http://news.netcraft.com/archives/2011/02/15/february-2011-web-server-survey.html[^]) I don't see how you can make that claim. And anecdotally, I know MS developers who develop using FF or Chrome because IE's developer tools were so late to the game and in my experience haven't been as good as the latter two. So given the apache statistics (the java link is a stretch I admit since that doesn't directly correlate with web pages) and the fact that not all IIS developers develop using IE I'd say that your claims are not factual at all.

                                      Code responsibly: OWASP.org Mark's blog: www.developMENTALmadness.com Bill Cosby - "A word to the wise ain't necessary - it's the stupid ones that need the advice."

                                      G Offline
                                      G Offline
                                      gggustafson
                                      wrote on last edited by
                                      #71

                                      I think I said "In my experience..."

                                      1 Reply Last reply
                                      0
                                      • G gggustafson

                                        I have just completed an Article in which I dearly wanted to dynamically create a stylesheet in the Javascript function that initializes the web page. I followed the following track:

                                        function create_stylesheet ( )
                                          {
                                          var created = false;
                                          var head = document.getElementsByTagName ( 'head' ) [ 0 ];
                                          
                                          if ( head )
                                            {
                                            var style = document.createElement ( 'style' );
                                            
                                            if ( style )
                                              {
                                              var CSS_string = new String ( );
                                        
                                              CSS_string =
                                                ".green_link," +
                                                ".revised_green_link" +
                                                  "{" +
                                                  "}" +
                                                ".abbreviation_alone" +
                                                  "{" +
                                                  "display:none;" +
                                                  "}" +
                                                ".abbreviation_definition" +
                                                  "{" +
                                                  "display:inline;" +
                                                  "}" + ...
                                        
                                              style.type = "text/css";
                                              style.rel = "stylesheet";
                                              
                                              if ( style.styleSheet )             // IE
                                                { 
                                                style.styleSheet.cssText = CSS_string;
                                                }
                                              else                                // W3C
                                                { 
                                                var CSS_text = document.createTextNode ( CSS_string );
                                                style.appendChild ( CSS_text );
                                                }
                                        
                                              head.appendChild ( style );
                                              created = true;
                                              }
                                            }
                                          
                                          return ( created );
                                          }
                                        

                                        The two rules, abbreviation_alone and abbreviation_definition were then to be retrieved from the page stylesheets and pointed to by two Javascript global variables. Although Firefox, IE, Opera, and Safari all performed as desired, Chrome did not. I had to revert to an external CSS file. The only reason for the dynamic stylesheet was to avoid having two files (.js and .css) included in the project. Please see DOM Style Sheets for further details. The Security in Depth: Local Web Pages describes a "feature" that has effectively crippled users of earlier Chrome versions. As a result, folks are suggesting a move away from Chrome. HTH Gus

                                        M Offline
                                        M Offline
                                        Mark J Miller
                                        wrote on last edited by
                                        #72

                                        Seems like a lot of work just to avoid including .js and .css files in the project. Considering they are standard web application files and they are static and therefore cache-able why spend so much time fighting it? Also, I don't see the argument for leaving Chrome because users of previous versions had a problem. By that argument, no one should be allowed to use any version of IE because of IE 6.0. Plus, IE users aren't forced to upgrade like Chrome users. Chrome automatically updates without any user interaction, so the only ones who would still be stuck on an old version would be those who have done something specific to prevent the update. I wouldn't even know how to do that nor would it make sense to because even though I may want to target Chrome for development, my users will always have the latest version so targeting an old version is an exercise in futility.

                                        Code responsibly: OWASP.org Mark's blog: www.developMENTALmadness.com Bill Cosby - "A word to the wise ain't necessary - it's the stupid ones that need the advice."

                                        G 1 Reply Last reply
                                        0
                                        • M Mark J Miller

                                          Seems like a lot of work just to avoid including .js and .css files in the project. Considering they are standard web application files and they are static and therefore cache-able why spend so much time fighting it? Also, I don't see the argument for leaving Chrome because users of previous versions had a problem. By that argument, no one should be allowed to use any version of IE because of IE 6.0. Plus, IE users aren't forced to upgrade like Chrome users. Chrome automatically updates without any user interaction, so the only ones who would still be stuck on an old version would be those who have done something specific to prevent the update. I wouldn't even know how to do that nor would it make sense to because even though I may want to target Chrome for development, my users will always have the latest version so targeting an old version is an exercise in futility.

                                          Code responsibly: OWASP.org Mark's blog: www.developMENTALmadness.com Bill Cosby - "A word to the wise ain't necessary - it's the stupid ones that need the advice."

                                          G Offline
                                          G Offline
                                          gggustafson
                                          wrote on last edited by
                                          #73

                                          Seems like a lot of work just to avoid including .js and .css files in the project. Although both .css and .js files are " standard web application files," by dynamically creating the CSS I avoid having to supply two files to people who want to use, say, Green Links. Now, because I try to be browser independent, I must supply both. This complicates the developer's tasks, unnecessarily. I don't see the argument for leaving Chrome because users of previous versions had a problem. The latest version of Chrome significantly modified the way Chrome works. In the toy programming environment this is not a major issue - not many people are affected. But in the production programming environment, this is a serious issue. If you are the development manager for a company that had tied its development to Chrome, had obtained a large number of customers, and then, because Chrome changed, found that your customers could no longer use your site, you would probably feel betrayed. To keep your site alive, you would probably suggest that your customers move to another browser. Even though I may want to target Chrome for development, my users will always have the latest version so targeting an old version is an exercise in futility. Exactly the point. Good development always means backward compatible development. At least in my world it does.

                                          M 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups