ChangeLog 5.0 KB

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