ChangeLog 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. 2005-09-29 Gonzalo Paniagua Javier <[email protected]>
  2. * HtmlFormTest.cs: Trim() the rendered form when comparing (\n vs \r\n).
  3. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  4. * HtmlInputButtonTest.cs: make sure the onclick attribute is rendered
  5. when we have a ServerClick event registered.
  6. 2005-09-19 Sebastien Pouliot <[email protected]>
  7. * HtmlAnchorCas.cs: Added "normal" unit tests execution under Deny
  8. Unrestricted.
  9. * HtmlAnchorTest.cs: RaisePostBackEvent now throws a NRE under 2.0 RC.
  10. * HtmlButtonCas.cs: Added "normal" unit tests execution under Deny
  11. Unrestricted.
  12. * HtmlContainerControlCas.cs: New. CAS unit tests.
  13. * HtmlFormCas.cs: Added "normal" unit tests execution under Deny
  14. Unrestricted.
  15. * HtmlFormTest.cs: Fixed rendering output under 2.0 RC.
  16. * HtmlImageCas.cs: Added "normal" unit tests execution under Deny
  17. Unrestricted.
  18. * HtmlInputButtonCas.cs: Added "normal" unit tests execution under
  19. Deny Unrestricted.
  20. * HtmlInputButtonTest.cs: Fixed attribute count for 2.0 RC.
  21. * HtmlInputControlCas.cs: New. CAS unit tests.
  22. * HtmlInputControlTest.cs: Fixed attribute count for 2.0 RC.
  23. * HtmlInputCheckBoxCas.cs: Added "normal" unit tests execution under
  24. Deny Unrestricted.
  25. * HtmlInputCheckBoxTest.cs: Fixed attribute count for 2.0 RC (which is
  26. now identical to 1.x results).
  27. * HtmlInputFileCas.cs: Added "normal" unit tests execution under Deny
  28. Unrestricted.
  29. * HtmlInputFileTest.cs: Fixed attribute count for 2.0 RC.
  30. * HtmlInputHiddenCas.cs: Fixed attribute count for 2.0 RC.
  31. * HtmlInputPasswordCas.cs: Added "normal" unit tests execution under
  32. Deny Unrestricted.
  33. * HtmlInputPasswordTest.cs: Adjusted tests as 2.0 RC removed the
  34. ctor(string).
  35. * HtmlInputRadioButtonCas.cs: Fixed attribute count for 2.0 RC.
  36. * HtmlInputRadioButtonTest.cs: Added "normal" unit tests execution
  37. under Deny Unrestricted.
  38. * HtmlInputResetCas.cs: Added "normal" unit tests execution under Deny
  39. Unrestricted.
  40. * HtmlInputResetTest.cs: Fixed attribute count for 2.0 RC.
  41. * HtmlInputSubmitCas.cs: Added "normal" unit tests execution under
  42. Deny Unrestricted.
  43. * HtmlInputSubmitTest.cs: Fixed attribute count for 2.0 RC.
  44. * HtmlInputTextCas.cs: Added "normal" unit tests execution under Deny
  45. Unrestricted.
  46. * HtmlInputTextTest.cs: Fixed attribute count for 2.0 RC.
  47. * HtmlLinkCas.cs: New. CAS unit tests.
  48. * HtmlMetaCas.cs: New. CAS unit tests.
  49. * HtmlMetaTest.cs: Fixed rendering for 2.0 RC (tag ending).
  50. * HtmlSelectCas.cs: Added "normal" unit tests execution under Deny
  51. Unrestricted.
  52. * HtmlTableCas.cs: Added "normal" unit tests execution under Deny
  53. Unrestricted.
  54. * HtmlTableCellCas.cs: Added "normal" unit tests execution under Deny
  55. Unrestricted.
  56. * HtmlTableRowCas.cs: Added "normal" unit tests execution under Deny
  57. Unrestricted.
  58. * HtmlTextAreaCas.cs: New. CAS unit tests.
  59. 2005-09-13 Sebastien Pouliot <[email protected]>
  60. * HtmlInputTextTest.cs: Fix expected value for LoadPostData (in the
  61. cases where MS returns a NullReferenceException).
  62. 2005-09-11 Chris Toshok <[email protected]>
  63. * HtmlInputFileTest.cs (Attribute_Count): fix for 2.0.
  64. 2005-09-11 Chris Toshok <[email protected]>
  65. * HtmlInputFileTest.cs: new tests.
  66. 2005-09-09 Chris Toshok <[email protected]>
  67. * HtmlFormTest.cs: Add test for RenderChildren.
  68. 2005-09-09 Chris Toshok <[email protected]>
  69. * HtmlInputButtonTest.cs (RenderAttributes): add in
  70. CausesValidation and ValidationGroup here.
  71. 2005-09-09 Sebastien Pouliot <[email protected]>
  72. * HtmlTableRowTest.cs: Added tests for InnerHtml and InnerText setters
  73. * HtmlTableTest.cs: Added tests for InnerHtml and InnerText setters
  74. 2005-09-07 Chris Toshok <[email protected]>
  75. * HtmlFormTest.cs: more tests to get at the root of the confusion
  76. that is the Name property. Also, copy over Gonzalo's
  77. Name_InsideNaming from HtmlInputControlTest.cs here.
  78. 2005-09-07 Gonzalo Paniagua Javier <[email protected]>
  79. * HtmlInputControlTest.cs: new tests for the case when the control is
  80. inside a different naming container.
  81. 2005-09-06 Chris Toshok <[email protected]>
  82. * HtmlLinkTest.cs: add empty render test.
  83. * HtmlMetaTest.cs: same.
  84. 2005-09-06 Chris Toshok <[email protected]>
  85. * HtmlLinkTest.cs: new tests.
  86. * HtmlMetaTest.cs: new tests.
  87. 2005-09-05 Chris Toshok <[email protected]>
  88. * HtmlFormTest.cs: add some more tests to make figure out the
  89. property spot to be storing some of these attributes.
  90. 2005-09-01 Sebastien Pouliot <[email protected]>
  91. * HtmlAnchorCas.cs, HtmlButtonCas.cs, HtmlEmptyTagControlBuilderCas.cs,
  92. HtmlFormCas.cs, HtmlGenericControlCas.cs, HtmlHeadBuilderCas.cs,
  93. HtmlHeadCas.cs, HtmlImageCas.cs, HtmlInputButtonCas.cs,
  94. HtmlInputCheckBoxCas.cs, HtmlInputFileCas.cs, HtmlInputHiddenCas.cs,
  95. HtmlInputImageCas.cs, HtmlInputPasswordCas.cs,
  96. HtmlInputRadioButtonCas.cs, HtmlInputResetCas.cs,
  97. HtmlInputSubmitCas.cs, HtmlInputTextCas.cs, HtmlSelectBuilderCas.cs,
  98. HtmlSelectCas.cs, HtmlTableCas.cs, HtmlTableCellCas.cs.
  99. HtmlTableRowCas.cs, HtmlTitleCas.cs: New. CAS unit tests to check for
  100. AspNetHostingPermission Level.
  101. 2005-08-29 Chris Toshok <[email protected]>
  102. * HtmlInputSubmitTest.cs: new, base-level tests.
  103. * HtmlInputButtonTest.cs: add CausesValidation/ValidationGroup
  104. view state tests.
  105. 2005-08-28 Gonzalo Paniagua Javier <[email protected]>
  106. * HtmlAnchorTest.cs: add test for HRef with an absolute URI.
  107. 2005-08-28 Chris Toshok <[email protected]>
  108. * HtmlInputResetTest.cs: new tests for HtmlInputReset. Missing
  109. event tests.
  110. 2005-08-28 Chris Toshok <[email protected]>
  111. * HtmlInputPasswordTest.cs: new tests for HtmlInputPassword.
  112. 2005-08-26 Sebastien Pouliot <[email protected]>
  113. * HtmlButtonTest.cs: Fix 1.1 build. ValidationGroup is only present in
  114. the 2.0 profile.
  115. 2005-08-26 Chris Toshok <[email protected]>
  116. * HtmlButtonTest.cs: add view state tests (to make sure
  117. ValidationGroup and CausesValidation are there.)
  118. 2005-08-22 Chris Toshok <[email protected]>
  119. * HtmlInputCheckBoxTest.cs: 2.0-ify these tests.
  120. * HtmlInputButtonTest.cs: same.
  121. 2005-08-15 Sebastien Pouliot <[email protected]>
  122. * HtmlAnchorTest.cs: Added test cases for IPostBackEventHandler (in
  123. 1.x) and for protected RaisePostBackEvent (in 2.0).
  124. * HtmlInputControlTest.cs: Added test to ensure HtmlInputRadioButton's
  125. Value behaviour wasn't inherited.
  126. * HtmlInputTextTest.cs: Added test cases for IPostBackDataHandler (in
  127. 1.x) and for new protected LoadPostData and RaisePostDataChangedEvent
  128. methods (in 2.0).
  129. * HtmlInputRadioButtonTest.cs: Added test cases for Value property and
  130. it's relattion to ID. Added tests cases for IPostBackDataHandler (in
  131. 1.x) and for new protected LoadPostData and RaisePostDataChangedEvent
  132. methods (in 2.0).
  133. * HtmlTextAreaTest.cs: Added test cases for IPostBackDataHandler (in
  134. 1.x) and for new protected LoadPostData and RaisePostDataChangedEvent
  135. methods (in 2.0).
  136. 2005-08-08 Sebastien Pouliot <[email protected]>
  137. * HtmlInputControlTest.cs: Added a new test to see if the value
  138. removal for type==password was done at this level (it's not).
  139. * HtmlInputTextTest.cs: Fixed tests to execute without failure on both
  140. 1.1 SP1 and 2.0 beta 2.
  141. 2005-07-27 Dick Porter <[email protected]>
  142. * HtmlInputCheckBoxTest.cs: Tests for HtmlInputCheckBox
  143. 2005-07-26 Dick Porter <[email protected]>
  144. * HtmlSelectTest.cs: Tests for HtmlSelect
  145. 2005-07-21 Dick Porter <[email protected]>
  146. * HtmlImageTest.cs: The order of attribute rendering has changed,
  147. and now matches MS
  148. 2005-07-19 Dick Porter <[email protected]>
  149. * HtmlImageTest.cs: Added tests for negative values in int
  150. properties
  151. 2005-07-18 Sebastien Pouliot <[email protected]>
  152. * HtmlInputControlTest.cs: Added a test when using null in the ctor
  153. (type is empty, not null). Test UniqueID, not only ID, when changing
  154. the Name property.
  155. 2005-07-18 Jackson Harper <[email protected]>
  156. * HtmlInputHiddenTest.cs: New test.
  157. 2005-07-15 Sebastien Pouliot <[email protected]>
  158. * HtmlAnchorTest.cs: Added tests for resolving the URL and the
  159. mysterious disappearance of the HRef attribute after rendering.
  160. 2005-07-14 Jackson Harper <[email protected]>
  161. * HtmlInputButton.cs: New tests for HtmlInputButton.
  162. 2005-07-14 Jackson Harper <[email protected]>
  163. * HtmlButtonTest.cs: New tests for HtmlButton.
  164. 2005-07-14 Dick Porter <[email protected]>
  165. * HtmlFormTest.cs: New set of tests
  166. 2005-07-08 Sebastien Pouliot <[email protected]>
  167. * HtmlTextAreaTest.cs: Added checks to see that Attributes are moved
  168. into the StateView.
  169. 2005-07-08 Sebastien Pouliot <[email protected]>
  170. * HtmlContainerControlTest.cs: Unit tests for HtmlContainerControl.
  171. Basically to check for removal of attributes/viewstate informations.
  172. * HtmlTextAreaTest.cs: Unit tests for HtmlTextArea.
  173. 2005-07-07 Sebastien Pouliot <[email protected]>
  174. * HtmlInputRadioButtonTest.cs: Unit tests for HtmlInputRadioButton.
  175. * HtmlInputTextTest.cs: More tests to check for password erasure fu.
  176. 2005-07-07 Sebastien Pouliot <[email protected]>
  177. * HtmlInputControlTest.cs: Unit tests for HtmlInputControl.
  178. * HtmlInputTextTest.cs: Unit tests for HtmlInputText.
  179. 2005-07-07 Dick Porter <[email protected]>
  180. * HtmlImageTest.cs: Unit tests for HtmlImage
  181. 2005-07-07 Sebastien Pouliot <[email protected]>
  182. * HtmlAnchorTest.cs: Unit tests for HtmlAnchor.
  183. * HtmlTableTest.cs: Unit tests for HtmlTable.
  184. * HtmlTableCellTest.cs: Unit tests for HtmlTableCell.
  185. * HtmlTableRowTest.cs: Unit tests for HtmlTableRow.