ChangeLog 4.3 KB

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