1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
2006-11-13 Igor Zelmanovich <igorz@mainsoft.com>
* HtmlContainerControlTest.cs: added new tests
2006-09-17 Igor Zelmanovich <igorz@mainsoft.com>
* HtmlAnchorTest.cs: added test for ViewState
2006-07-10 Andrew Skiba <andrews@mainsoft.com>
* HtmlInputControlTest.cs: check attribute values, not only their
count.
2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlInputRadioButtonTest.cs: added test for bug #78101.
2005-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlTextAreaTest.cs: add new test for 'Name'.
2005-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlTableTest.cs: remove white-space characters when comparing
the output.
2005-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlInputButtonTest.cs: more tests for 'onclick'.
2005-09-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlFormTest.cs: Trim() the rendered form when comparing (\n vs \r\n).
2005-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlInputButtonTest.cs: make sure the onclick attribute is rendered
when we have a ServerClick event registered.
2005-09-19 Sebastien Pouliot <sebastien@ximian.com>
* HtmlAnchorCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlAnchorTest.cs: RaisePostBackEvent now throws a NRE under 2.0 RC.
* HtmlButtonCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlContainerControlCas.cs: New. CAS unit tests.
* HtmlFormCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlFormTest.cs: Fixed rendering output under 2.0 RC.
* HtmlImageCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlInputButtonCas.cs: Added "normal" unit tests execution under
Deny Unrestricted.
* HtmlInputButtonTest.cs: Fixed attribute count for 2.0 RC.
* HtmlInputControlCas.cs: New. CAS unit tests.
* HtmlInputControlTest.cs: Fixed attribute count for 2.0 RC.
* HtmlInputCheckBoxCas.cs: Added "normal" unit tests execution under
Deny Unrestricted.
* HtmlInputCheckBoxTest.cs: Fixed attribute count for 2.0 RC (which is
now identical to 1.x results).
* HtmlInputFileCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlInputFileTest.cs: Fixed attribute count for 2.0 RC.
* HtmlInputHiddenCas.cs: Fixed attribute count for 2.0 RC.
* HtmlInputPasswordCas.cs: Added "normal" unit tests execution under
Deny Unrestricted.
* HtmlInputPasswordTest.cs: Adjusted tests as 2.0 RC removed the
ctor(string).
* HtmlInputRadioButtonCas.cs: Fixed attribute count for 2.0 RC.
* HtmlInputRadioButtonTest.cs: Added "normal" unit tests execution
under Deny Unrestricted.
* HtmlInputResetCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlInputResetTest.cs: Fixed attribute count for 2.0 RC.
* HtmlInputSubmitCas.cs: Added "normal" unit tests execution under
Deny Unrestricted.
* HtmlInputSubmitTest.cs: Fixed attribute count for 2.0 RC.
* HtmlInputTextCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlInputTextTest.cs: Fixed attribute count for 2.0 RC.
* HtmlLinkCas.cs: New. CAS unit tests.
* HtmlMetaCas.cs: New. CAS unit tests.
* HtmlMetaTest.cs: Fixed rendering for 2.0 RC (tag ending).
* HtmlSelectCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlTableCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlTableCellCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlTableRowCas.cs: Added "normal" unit tests execution under Deny
Unrestricted.
* HtmlTextAreaCas.cs: New. CAS unit tests.
2005-09-13 Sebastien Pouliot <sebastien@ximian.com>
* HtmlInputTextTest.cs: Fix expected value for LoadPostData (in the
cases where MS returns a NullReferenceException).
2005-09-11 Chris Toshok <toshok@ximian.com>
* HtmlInputFileTest.cs (Attribute_Count): fix for 2.0.
2005-09-11 Chris Toshok <toshok@ximian.com>
* HtmlInputFileTest.cs: new tests.
2005-09-09 Chris Toshok <toshok@ximian.com>
* HtmlFormTest.cs: Add test for RenderChildren.
2005-09-09 Chris Toshok <toshok@ximian.com>
* HtmlInputButtonTest.cs (RenderAttributes): add in
CausesValidation and ValidationGroup here.
2005-09-09 Sebastien Pouliot <sebastien@ximian.com>
* HtmlTableRowTest.cs: Added tests for InnerHtml and InnerText setters
* HtmlTableTest.cs: Added tests for InnerHtml and InnerText setters
2005-09-07 Chris Toshok <toshok@ximian.com>
* HtmlFormTest.cs: more tests to get at the root of the confusion
that is the Name property. Also, copy over Gonzalo's
Name_InsideNaming from HtmlInputControlTest.cs here.
2005-09-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlInputControlTest.cs: new tests for the case when the control is
inside a different naming container.
2005-09-06 Chris Toshok <toshok@ximian.com>
* HtmlLinkTest.cs: add empty render test.
* HtmlMetaTest.cs: same.
2005-09-06 Chris Toshok <toshok@ximian.com>
* HtmlLinkTest.cs: new tests.
* HtmlMetaTest.cs: new tests.
2005-09-05 Chris Toshok <toshok@ximian.com>
* HtmlFormTest.cs: add some more tests to make figure out the
property spot to be storing some of these attributes.
2005-09-01 Sebastien Pouliot <sebastien@ximian.com>
* HtmlAnchorCas.cs, HtmlButtonCas.cs, HtmlEmptyTagControlBuilderCas.cs,
HtmlFormCas.cs, HtmlGenericControlCas.cs, HtmlHeadBuilderCas.cs,
HtmlHeadCas.cs, HtmlImageCas.cs, HtmlInputButtonCas.cs,
HtmlInputCheckBoxCas.cs, HtmlInputFileCas.cs, HtmlInputHiddenCas.cs,
HtmlInputImageCas.cs, HtmlInputPasswordCas.cs,
HtmlInputRadioButtonCas.cs, HtmlInputResetCas.cs,
HtmlInputSubmitCas.cs, HtmlInputTextCas.cs, HtmlSelectBuilderCas.cs,
HtmlSelectCas.cs, HtmlTableCas.cs, HtmlTableCellCas.cs.
HtmlTableRowCas.cs, HtmlTitleCas.cs: New. CAS unit tests to check for
AspNetHostingPermission Level.
2005-08-29 Chris Toshok <toshok@ximian.com>
* HtmlInputSubmitTest.cs: new, base-level tests.
* HtmlInputButtonTest.cs: add CausesValidation/ValidationGroup
view state tests.
2005-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlAnchorTest.cs: add test for HRef with an absolute URI.
2005-08-28 Chris Toshok <toshok@ximian.com>
* HtmlInputResetTest.cs: new tests for HtmlInputReset. Missing
event tests.
2005-08-28 Chris Toshok <toshok@ximian.com>
* HtmlInputPasswordTest.cs: new tests for HtmlInputPassword.
2005-08-26 Sebastien Pouliot <sebastien@ximian.com>
* HtmlButtonTest.cs: Fix 1.1 build. ValidationGroup is only present in
the 2.0 profile.
2005-08-26 Chris Toshok <toshok@ximian.com>
* HtmlButtonTest.cs: add view state tests (to make sure
ValidationGroup and CausesValidation are there.)
2005-08-22 Chris Toshok <toshok@ximian.com>
* HtmlInputCheckBoxTest.cs: 2.0-ify these tests.
* HtmlInputButtonTest.cs: same.
2005-08-15 Sebastien Pouliot <sebastien@ximian.com>
* HtmlAnchorTest.cs: Added test cases for IPostBackEventHandler (in
1.x) and for protected RaisePostBackEvent (in 2.0).
* HtmlInputControlTest.cs: Added test to ensure HtmlInputRadioButton's
Value behaviour wasn't inherited.
* HtmlInputTextTest.cs: Added test cases for IPostBackDataHandler (in
1.x) and for new protected LoadPostData and RaisePostDataChangedEvent
methods (in 2.0).
* HtmlInputRadioButtonTest.cs: Added test cases for Value property and
it's relattion to ID. Added tests cases for IPostBackDataHandler (in
1.x) and for new protected LoadPostData and RaisePostDataChangedEvent
methods (in 2.0).
* HtmlTextAreaTest.cs: Added test cases for IPostBackDataHandler (in
1.x) and for new protected LoadPostData and RaisePostDataChangedEvent
methods (in 2.0).
2005-08-08 Sebastien Pouliot <sebastien@ximian.com>
* HtmlInputControlTest.cs: Added a new test to see if the value
removal for type==password was done at this level (it's not).
* HtmlInputTextTest.cs: Fixed tests to execute without failure on both
1.1 SP1 and 2.0 beta 2.
2005-07-27 Dick Porter <dick@ximian.com>
* HtmlInputCheckBoxTest.cs: Tests for HtmlInputCheckBox
2005-07-26 Dick Porter <dick@ximian.com>
* HtmlSelectTest.cs: Tests for HtmlSelect
2005-07-21 Dick Porter <dick@ximian.com>
* HtmlImageTest.cs: The order of attribute rendering has changed,
and now matches MS
2005-07-19 Dick Porter <dick@ximian.com>
* HtmlImageTest.cs: Added tests for negative values in int
properties
2005-07-18 Sebastien Pouliot <sebastien@ximian.com>
* HtmlInputControlTest.cs: Added a test when using null in the ctor
(type is empty, not null). Test UniqueID, not only ID, when changing
the Name property.
2005-07-18 Jackson Harper <jackson@ximian.com>
* HtmlInputHiddenTest.cs: New test.
2005-07-15 Sebastien Pouliot <sebastien@ximian.com>
* HtmlAnchorTest.cs: Added tests for resolving the URL and the
mysterious disappearance of the HRef attribute after rendering.
2005-07-14 Jackson Harper <jackson@ximian.com>
* HtmlInputButton.cs: New tests for HtmlInputButton.
2005-07-14 Jackson Harper <jackson@ximian.com>
* HtmlButtonTest.cs: New tests for HtmlButton.
2005-07-14 Dick Porter <dick@ximian.com>
* HtmlFormTest.cs: New set of tests
2005-07-08 Sebastien Pouliot <sebastien@ximian.com>
* HtmlTextAreaTest.cs: Added checks to see that Attributes are moved
into the StateView.
2005-07-08 Sebastien Pouliot <sebastien@ximian.com>
* HtmlContainerControlTest.cs: Unit tests for HtmlContainerControl.
Basically to check for removal of attributes/viewstate informations.
* HtmlTextAreaTest.cs: Unit tests for HtmlTextArea.
2005-07-07 Sebastien Pouliot <sebastien@ximian.com>
* HtmlInputRadioButtonTest.cs: Unit tests for HtmlInputRadioButton.
* HtmlInputTextTest.cs: More tests to check for password erasure fu.
2005-07-07 Sebastien Pouliot <sebastien@ximian.com>
* HtmlInputControlTest.cs: Unit tests for HtmlInputControl.
* HtmlInputTextTest.cs: Unit tests for HtmlInputText.
2005-07-07 Dick Porter <dick@ximian.com>
* HtmlImageTest.cs: Unit tests for HtmlImage
2005-07-07 Sebastien Pouliot <sebastien@ximian.com>
* HtmlAnchorTest.cs: Unit tests for HtmlAnchor.
* HtmlTableTest.cs: Unit tests for HtmlTable.
* HtmlTableCellTest.cs: Unit tests for HtmlTableCell.
* HtmlTableRowTest.cs: Unit tests for HtmlTableRow.
|