ChangeLog 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. 2005-08-26 Sebastien Pouliot <[email protected]>
  2. * HtmlButtonTest.cs: Fix 1.1 build. ValidationGroup is only present in
  3. the 2.0 profile.
  4. 2005-08-26 Chris Toshok <[email protected]>
  5. * HtmlButtonTest.cs: add view state tests (to make sure
  6. ValidationGroup and CausesValidation are there.)
  7. 2005-08-22 Chris Toshok <[email protected]>
  8. * HtmlInputCheckBoxTest.cs: 2.0-ify these tests.
  9. * HtmlInputButtonTest.cs: same.
  10. 2005-08-15 Sebastien Pouliot <[email protected]>
  11. * HtmlAnchorTest.cs: Added test cases for IPostBackEventHandler (in
  12. 1.x) and for protected RaisePostBackEvent (in 2.0).
  13. * HtmlInputControlTest.cs: Added test to ensure HtmlInputRadioButton's
  14. Value behaviour wasn't inherited.
  15. * HtmlInputTextTest.cs: Added test cases for IPostBackDataHandler (in
  16. 1.x) and for new protected LoadPostData and RaisePostDataChangedEvent
  17. methods (in 2.0).
  18. * HtmlInputRadioButtonTest.cs: Added test cases for Value property and
  19. it's relattion to ID. Added tests cases for IPostBackDataHandler (in
  20. 1.x) and for new protected LoadPostData and RaisePostDataChangedEvent
  21. methods (in 2.0).
  22. * HtmlTextAreaTest.cs: Added test cases for IPostBackDataHandler (in
  23. 1.x) and for new protected LoadPostData and RaisePostDataChangedEvent
  24. methods (in 2.0).
  25. 2005-08-08 Sebastien Pouliot <[email protected]>
  26. * HtmlInputControlTest.cs: Added a new test to see if the value
  27. removal for type==password was done at this level (it's not).
  28. * HtmlInputTextTest.cs: Fixed tests to execute without failure on both
  29. 1.1 SP1 and 2.0 beta 2.
  30. 2005-07-27 Dick Porter <[email protected]>
  31. * HtmlInputCheckBoxTest.cs: Tests for HtmlInputCheckBox
  32. 2005-07-26 Dick Porter <[email protected]>
  33. * HtmlSelectTest.cs: Tests for HtmlSelect
  34. 2005-07-21 Dick Porter <[email protected]>
  35. * HtmlImageTest.cs: The order of attribute rendering has changed,
  36. and now matches MS
  37. 2005-07-19 Dick Porter <[email protected]>
  38. * HtmlImageTest.cs: Added tests for negative values in int
  39. properties
  40. 2005-07-18 Sebastien Pouliot <[email protected]>
  41. * HtmlInputControlTest.cs: Added a test when using null in the ctor
  42. (type is empty, not null). Test UniqueID, not only ID, when changing
  43. the Name property.
  44. 2005-07-18 Jackson Harper <[email protected]>
  45. * HtmlInputHiddenTest.cs: New test.
  46. 2005-07-15 Sebastien Pouliot <[email protected]>
  47. * HtmlAnchorTest.cs: Added tests for resolving the URL and the
  48. mysterious disappearance of the HRef attribute after rendering.
  49. 2005-07-14 Jackson Harper <[email protected]>
  50. * HtmlInputButton.cs: New tests for HtmlInputButton.
  51. 2005-07-14 Jackson Harper <[email protected]>
  52. * HtmlButtonTest.cs: New tests for HtmlButton.
  53. 2005-07-14 Dick Porter <[email protected]>
  54. * HtmlFormTest.cs: New set of tests
  55. 2005-07-08 Sebastien Pouliot <[email protected]>
  56. * HtmlTextAreaTest.cs: Added checks to see that Attributes are moved
  57. into the StateView.
  58. 2005-07-08 Sebastien Pouliot <[email protected]>
  59. * HtmlContainerControlTest.cs: Unit tests for HtmlContainerControl.
  60. Basically to check for removal of attributes/viewstate informations.
  61. * HtmlTextAreaTest.cs: Unit tests for HtmlTextArea.
  62. 2005-07-07 Sebastien Pouliot <[email protected]>
  63. * HtmlInputRadioButtonTest.cs: Unit tests for HtmlInputRadioButton.
  64. * HtmlInputTextTest.cs: More tests to check for password erasure fu.
  65. 2005-07-07 Sebastien Pouliot <[email protected]>
  66. * HtmlInputControlTest.cs: Unit tests for HtmlInputControl.
  67. * HtmlInputTextTest.cs: Unit tests for HtmlInputText.
  68. 2005-07-07 Dick Porter <[email protected]>
  69. * HtmlImageTest.cs: Unit tests for HtmlImage
  70. 2005-07-07 Sebastien Pouliot <[email protected]>
  71. * HtmlAnchorTest.cs: Unit tests for HtmlAnchor.
  72. * HtmlTableTest.cs: Unit tests for HtmlTable.
  73. * HtmlTableCellTest.cs: Unit tests for HtmlTableCell.
  74. * HtmlTableRowTest.cs: Unit tests for HtmlTableRow.