RESOLVED FIXED 28145
novalidate/formnovalidate support
https://bugs.webkit.org/show_bug.cgi?id=28145
Summary novalidate/formnovalidate support
Michelangelo De Simone
Reported 2009-08-10 06:27:24 PDT
Support for such attributes should be implemented in WebKit. These attributes do nothing but "deactivate" validation on form elements.
Attachments
Patch v1 (12.72 KB, patch)
2009-08-21 13:29 PDT, Michelangelo De Simone
no flags
Patch v.1a (15.07 KB, patch)
2009-08-21 17:46 PDT, Michelangelo De Simone
adele: review+
Peter Kasting
Comment 1 2009-08-20 22:48:51 PDT
Sadly, much was lost on this bug due to database corruption. The key points were: Michelangelo attached a patch for review; eseidel gave it r-, with the following comment: --- Comment #10 from Eric Seidel <eric@webkit.org> 2009-08-20 17:21:28 PDT --- (From update of attachment 35234) These tests look pretty vacuous. They would pass w/o any of the code changes it seems. +v = document.getElementsByName("victim"); +for (i = 0; i < v.length; i++) { + shouldBe("v[i].formNoValidate", "false"); + v[i].formNoValidate = true; +} +for (i = 0; i < v.length; i++) + shouldBe("v[i].formNoValidate", "true"); Personally I prefer to write js-only tests, instead of making manual templates as you have done. Meaning, if you convert your form dom creation into JS calls, this whole test can just live in a single .js file in resources/ and you can use make-script-test-wrappers to generate the wrapper for you. It seems it would be more interesting to test what getAttribute('novalidate') gets set to when you change the JS properties.
Michelangelo De Simone
Comment 2 2009-08-21 13:29:10 PDT
Created attachment 38391 [details] Patch v1
Michelangelo De Simone
Comment 3 2009-08-21 16:12:33 PDT
Adele commented about the proposed patch: HTMLFormControlElement::isInNoValidateState() should land once it's being used. Eliminating it, for now. But it shall be back.:)
Michelangelo De Simone
Comment 4 2009-08-21 17:46:01 PDT
Created attachment 38425 [details] Patch v.1a
Peter Kasting
Comment 5 2009-08-21 18:17:47 PDT
Fixed in r47655.
Michelangelo De Simone
Comment 6 2009-08-21 18:57:53 PDT
Tree broken, investigating...
Michelangelo De Simone
Comment 7 2009-08-21 19:12:44 PDT
Fixed in r47658. Committed patch was incomplete, modifications in HTMLFormControlElement.h present in the r+'ed patch were missing.;)
Note You need to log in before you can comment on or make changes to this bug.