Imported Upstream version 6.4.0.137

Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-07-26 19:53:28 +00:00
parent e9207cf623
commit ef583813eb
2712 changed files with 74169 additions and 40587 deletions

File diff suppressed because one or more lines are too long

View File

@@ -73,8 +73,8 @@ namespace MonoCasTests.System.Web.Mail {
msg.Priority = MailPriority.High;
msg.Subject = "Monkey business";
msg.To = "to@localhost.com";
msg.UrlContentBase = "http://www.mono-project.com";
msg.UrlContentLocation = "http://www.go-mono.com";
msg.UrlContentBase = "http://www.example.org";
msg.UrlContentLocation = "http://www.example.com";
}
// LinkDemand tests

View File

@@ -65,8 +65,8 @@ namespace MonoCasTests.System.Web.Mail {
msg.Priority = MailPriority.High;
msg.Subject = "Monkey business";
msg.To = "to@localhost.com";
msg.UrlContentBase = "http://www.mono-project.com";
msg.UrlContentLocation = "http://www.go-mono.com";
msg.UrlContentBase = "http://www.example.org";
msg.UrlContentLocation = "http://www.example.com";
// ensure the static ctor is called at full trust
Assert.IsNotNull (SmtpMail.SmtpServer);
}

View File

@@ -278,9 +278,9 @@ namespace MonoTests.System.Web.UI.HtmlControls {
r.Cells.Add (c1);
HtmlTableCell c2 = new HtmlTableCell ();
c2.Align = "left";
c2.InnerHtml = "<a href=\"http://www.go-mono.com\">Mono</a>";
c2.InnerHtml = "<a href=\"http://www.example.com\">Example</a>";
r.Cells.Add (c2);
Assert.AreEqual (RemoveWS ("<table align=\"center\">\r\n\t<tr valign=\"top\">\r\n\t\t<td align=\"right\">Go</td>\r\n\t\t<td align=\"left\"><a href=\"http://www.go-mono.com\">Mono</a></td>\r\n\t</tr>\r\n</table>\r\n"), RemoveWS (t.Render ()));
Assert.AreEqual (RemoveWS ("<table align=\"center\">\r\n\t<tr valign=\"top\">\r\n\t\t<td align=\"right\">Go</td>\r\n\t\t<td align=\"left\"><a href=\"http://www.example.com\">Example</a></td>\r\n\t</tr>\r\n</table>\r\n"), RemoveWS (t.Render ()));
}
[Test]

View File

@@ -116,7 +116,7 @@ namespace MonoTests.System.Web.UI.WebControls.Adapters
// This has to stay to work around event validation errors. If it's removed,
// then RenderItem will eventually attempt to register for event validation,
// which can only be done during the Render phase.
item.NavigateUrl = "http://google.com/";
item.NavigateUrl = "http://example.com/";
a.RenderItem (w, item, 0);
Assert.IsTrue (sw.ToString ().IndexOf("menu item text") != -1, "RenderItem #1");
}

View File

@@ -218,8 +218,8 @@ namespace MonoTests.System.Web.UI.WebControls {
TestLoginStatus ls = new TestLoginStatus ();
Assert.AreEqual ("a", ls.Tag, "TagName");
ls.LoginImageUrl = "http://www.go-mono.com";
ls.LogoutImageUrl = "http://www.mono-project.com";
ls.LoginImageUrl = "http://www.example.com";
ls.LogoutImageUrl = "http://www.example.org";
Assert.AreEqual ("a", ls.Tag, "TagName");
}

View File

@@ -407,12 +407,12 @@ namespace MonoTests.System.Web.UI.WebControls {
{
CssStyleCollection css = GetCssCollection ();
TestTableStyle ts = new TestTableStyle ();
ts.BackImageUrl = "http://www.go-mono.com";
ts.BackImageUrl = "http://www.example.com";
ts.Fill (css, null);
Assert.AreEqual (1, css.Count, "Count");
Assert.AreEqual ("http://www.go-mono.com", css["background-image"], "css[string]");
Assert.AreEqual ("http://www.go-mono.com", css[HtmlTextWriterStyle.BackgroundImage], "css[HtmlTextWriterStyle]");
Assert.AreEqual ("background-image:url(http://www.go-mono.com);", css.Value, "css.Value");
Assert.AreEqual ("http://www.example.com", css["background-image"], "css[string]");
Assert.AreEqual ("http://www.example.com", css[HtmlTextWriterStyle.BackgroundImage], "css[HtmlTextWriterStyle]");
Assert.AreEqual ("background-image:url(http://www.example.com);", css.Value, "css.Value");
}
[Test]
@@ -420,13 +420,13 @@ namespace MonoTests.System.Web.UI.WebControls {
{
CssStyleCollection css = GetCssCollection ();
TestTableStyle ts = new TestTableStyle ();
ts.BackImageUrl = "http://www.go-mono.com";
ts.BackImageUrl = "http://www.example.com";
ts.Fill (css, new TestResolutionService ());
Assert.AreEqual (1, css.Count, "Count");
Assert.AreEqual ("http://www.mono-project.com", css["background-image"], "css[string]");
Assert.AreEqual ("http://www.mono-project.com", css[HtmlTextWriterStyle.BackgroundImage], "css[HtmlTextWriterStyle]");
Assert.AreEqual ("background-image:url(http://www.mono-project.com);", css.Value, "css.Value");
Assert.AreEqual ("http://www.go-mono.com", ts.BackImageUrl, "BackImageUrl");
Assert.AreEqual ("http://www.example.com", ts.BackImageUrl, "BackImageUrl");
}
[Test]
[Category ("NotWorking")]

View File

@@ -739,7 +739,7 @@ namespace MonoTests.System.Web.UI
Assert.AreEqual ("NunitWeb/MyPage.aspx", ctrl.ResolveClientUrl ("NunitWeb/MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual ("NunitWeb/../MyPage.aspx", ctrl.ResolveClientUrl ("NunitWeb/../MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual ("NunitWeb/./MyPage.aspx", ctrl.ResolveClientUrl ("NunitWeb/./MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual ("http://google.com/", ctrl.ResolveClientUrl ("http://google.com/"), "ResolveClientUrl Failed");
Assert.AreEqual ("http://example.com/", ctrl.ResolveClientUrl ("http://example.com/"), "ResolveClientUrl Failed");
Assert.AreEqual ("MyPage.aspx?param=val&yes=no", ctrl.ResolveClientUrl ("~/MyPage.aspx?param=val&yes=no"), "~/../MyPage.aspx");
Assert.AreEqual ("../MyPage.aspx?param=val&yes=no", ctrl.ResolveClientUrl ("~/../MyPage.aspx?param=val&yes=no"), "~/../MyPage.aspx");
@@ -784,7 +784,7 @@ namespace MonoTests.System.Web.UI
Assert.AreEqual ("Folder/NunitWeb/MyPage.aspx", ctrl.ResolveClientUrl ("NunitWeb/MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual ("Folder/MyPage.aspx", ctrl.ResolveClientUrl ("NunitWeb/../MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual ("Folder/NunitWeb/MyPage.aspx", ctrl.ResolveClientUrl ("NunitWeb/./MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual ("http://google.com/", ctrl.ResolveClientUrl ("http://google.com/"), "ResolveClientUrl Failed");
Assert.AreEqual ("http://example.com/", ctrl.ResolveClientUrl ("http://example.com/"), "ResolveClientUrl Failed");
Assert.AreEqual ("MyPage.aspx?param=val&yes=no", ctrl.ResolveClientUrl ("~/MyPage.aspx?param=val&yes=no"), "~/../MyPage.aspx");
Assert.AreEqual ("../MyPage.aspx?param=val&yes=no", ctrl.ResolveClientUrl ("~/../MyPage.aspx?param=val&yes=no"), "~/../MyPage.aspx");
@@ -825,7 +825,7 @@ namespace MonoTests.System.Web.UI
Assert.AreEqual (appPath + "/NunitWeb/MyPage.aspx", ctrl.ResolveUrl ("NunitWeb/MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual (appPath + "/MyPage.aspx", ctrl.ResolveUrl ("NunitWeb/../MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual (appPath + "/NunitWeb/MyPage.aspx", ctrl.ResolveUrl ("NunitWeb/./MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual ("http://google.com/", ctrl.ResolveUrl ("http://google.com/"), "ResolveClientUrl Failed");
Assert.AreEqual ("http://example.com/", ctrl.ResolveUrl ("http://example.com/"), "ResolveClientUrl Failed");
Assert.AreEqual (appPath + "/MyPage.aspx?param=val&yes=no", ctrl.ResolveUrl ("~/MyPage.aspx?param=val&yes=no"), "~/../MyPage.aspx");
Assert.AreEqual ("/MyPage.aspx?param=val&yes=no", ctrl.ResolveUrl ("~/../MyPage.aspx?param=val&yes=no"), "~/../MyPage.aspx");
@@ -872,7 +872,7 @@ namespace MonoTests.System.Web.UI
Assert.AreEqual (appPath + "/Folder/NunitWeb/MyPage.aspx", ctrl.ResolveUrl ("NunitWeb/MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual (appPath + "/Folder/MyPage.aspx", ctrl.ResolveUrl ("NunitWeb/../MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual (appPath + "/Folder/NunitWeb/MyPage.aspx", ctrl.ResolveUrl ("NunitWeb/./MyPage.aspx"), "ResolveClientUrl Failed");
Assert.AreEqual ("http://google.com/", ctrl.ResolveUrl ("http://google.com/"), "ResolveClientUrl Failed");
Assert.AreEqual ("http://example.com/", ctrl.ResolveUrl ("http://example.com/"), "ResolveClientUrl Failed");
Assert.AreEqual (appPath + "/MyPage.aspx?param=val&yes=no", ctrl.ResolveUrl ("~/MyPage.aspx?param=val&yes=no"), "~/../MyPage.aspx");
Assert.AreEqual ("/MyPage.aspx?param=val&yes=no", ctrl.ResolveUrl ("~/../MyPage.aspx?param=val&yes=no"), "~/../MyPage.aspx");

View File

@@ -50,8 +50,8 @@ namespace MonoTests.System.Web.UI
public void CssStyleCollection_BackgroundImage () {
WebControl c = new WebControl (HtmlTextWriterTag.A);
CssStyleCollection css = c.Style;
string url = "http://www.go-mono.com/space here?key1=val1&key2=val2";
string url_encoded = "http://www.go-mono.com/space%20here?key1=val1&key2=val2";
string url = "http://www.example.com/space here?key1=val1&key2=val2";
string url_encoded = "http://www.example.com/space%20here?key1=val1&key2=val2";
css.Add (HtmlTextWriterStyle.BackgroundImage, url);
@@ -64,8 +64,8 @@ namespace MonoTests.System.Web.UI
public void CssStyleCollection_BackgroundImage2 () {
WebControl c = new WebControl (HtmlTextWriterTag.A);
CssStyleCollection css = c.Style;
string url = "http://www.go-mono.com/space here?key1=val1&key2=val2";
string url_encoded = "http://www.go-mono.com/space%20here?key1=val1&key2=val2";
string url = "http://www.example.com/space here?key1=val1&key2=val2";
string url_encoded = "http://www.example.com/space%20here?key1=val1&key2=val2";
css.Add ("background-image", url);
@@ -78,8 +78,8 @@ namespace MonoTests.System.Web.UI
public void CssStyleCollection_BackgroundImage3 () {
WebControl c = new WebControl (HtmlTextWriterTag.A);
CssStyleCollection css = c.Style;
string url = "http://www.go-mono.com/space here?key1=val1&key2=val2";
string url_encoded = "http://www.go-mono.com/space%20here?key1=val1&key2=val2";
string url = "http://www.example.com/space here?key1=val1&key2=val2";
string url_encoded = "http://www.example.com/space%20here?key1=val1&key2=val2";
css.Add ("background-image", "url(" + url_encoded + ")");
@@ -92,8 +92,8 @@ namespace MonoTests.System.Web.UI
public void CssStyleCollection_BackgroundImage4 () {
WebControl c = new WebControl (HtmlTextWriterTag.A);
CssStyleCollection css = c.Style;
string url = "http://www.go-mono.com/space here?key1=val1&key2=val2";
string url_encoded = "http://www.go-mono.com/space%20here?key1=val1&key2=val2";
string url = "http://www.example.com/space here?key1=val1&key2=val2";
string url_encoded = "http://www.example.com/space%20here?key1=val1&key2=val2";
c.Attributes ["style"] = "background-image:url(" + url_encoded + ");";

View File

@@ -170,10 +170,10 @@ namespace MonoTests.System.Web.UI {
[Test]
public void EscapeUrl ()
{
w.AddAttribute (HtwAttribute.Href, "http://www.google.com/search?hl=en&q=i+love+nunit&btnG=Google+Search");
w.AddAttribute (HtwAttribute.Href, "http://www.example.com/search?hl=en&q=i+love+nunit&btnG=Google+Search");
w.RenderBeginTag (HtwTag.A);
w.RenderEndTag ();
Assert.AreEqual ("<a href=\"http://www.google.com/search?hl=en&amp;q=i+love+nunit&amp;btnG=Google+Search\"></a>", sw.ToString ());
Assert.AreEqual ("<a href=\"http://www.example.com/search?hl=en&amp;q=i+love+nunit&amp;btnG=Google+Search\"></a>", sw.ToString ());
}
// Which attrs fall here
@@ -377,11 +377,11 @@ namespace MonoTests.System.Web.UI {
[Test]
public void AddStyleAttribute1 ()
{
w.AddStyleAttribute (HtmlTextWriterStyle.BackgroundImage, "http://www.go-mono.com/");
w.AddStyleAttribute (HtmlTextWriterStyle.BackgroundImage, "http://www.example.com/");
w.RenderBeginTag ("div");
w.RenderEndTag ();
Assert.AreEqual ("<div style=\"background-image:url(http://www.go-mono.com/);\">\n\n</div>", sw.ToString ());
Assert.AreEqual ("<div style=\"background-image:url(http://www.example.com/);\">\n\n</div>", sw.ToString ());
}
[Test]

View File

@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<testresults name="">
<div id="GHTSubTest1" style="height:56px;width:553px">
<a href="http://www.google.com" id="anchor1" name="anchor1">Anchor1</a>
<a href="http://www.example.com" id="anchor1" name="anchor1">Anchor1</a>
</div>
<div id="Ghtsubtest2" style="height:56px;width:553px">
<a href="http://www.google.com" id="anchor2" name="anchor2_!@#$%^&amp;*()">
<a href="http://www.example.com" id="anchor2" name="anchor2_!@#$%^&amp;*()">
Anchor2</a>
</div>
<div id="Ghtsubtest3" style="height:59px;width:553px">
<a href="http://www.google.com" id="anchor3" name="name_anchor3">Anchor3</a>
<a href="http://www.example.com" id="anchor3" name="name_anchor3">Anchor3</a>
<span>
<br />name_anchor3</span>
</div>
<div id="Ghtsubtest4" style="height:59px;width:553px">
<a href="http://www.google.com" id="anchor4" name="123">Anchor4</a>
<a href="http://www.example.com" id="anchor4" name="123">Anchor4</a>
<span>
<br />123</span>
</div>

View File

@@ -278,7 +278,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">1</a>
<a href="http://www.example.com">1</a>
</td>
<td>1</td>
<td>n_0_one</td>
@@ -286,7 +286,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">2</a>
<a href="http://www.example.com">2</a>
</td>
<td>2</td>
<td>n_0_two</td>
@@ -294,7 +294,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">3</a>
<a href="http://www.example.com">3</a>
</td>
<td>3</td>
<td>n_0_three</td>
@@ -302,7 +302,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">4</a>
<a href="http://www.example.com">4</a>
</td>
<td>4</td>
<td>n_0_four</td>
@@ -310,7 +310,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">5</a>
<a href="http://www.example.com">5</a>
</td>
<td>5</td>
<td>n_0_five</td>
@@ -318,7 +318,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">6</a>
<a href="http://www.example.com">6</a>
</td>
<td>6</td>
<td>n_0_six</td>
@@ -326,7 +326,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">7</a>
<a href="http://www.example.com">7</a>
</td>
<td>7</td>
<td>n_0_seven</td>
@@ -334,7 +334,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">8</a>
<a href="http://www.example.com">8</a>
</td>
<td>8</td>
<td>n_0_eight</td>
@@ -342,7 +342,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">9</a>
<a href="http://www.example.com">9</a>
</td>
<td>9</td>
<td>n_0_nine</td>
@@ -350,7 +350,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">10</a>
<a href="http://www.example.com">10</a>
</td>
<td>10</td>
<td>n_0_ten</td>

View File

@@ -278,7 +278,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">1</a>
<a href="http://www.example.com">1</a>
</td>
<td>1</td>
<td>n_0_one</td>
@@ -286,7 +286,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">2</a>
<a href="http://www.example.com">2</a>
</td>
<td>2</td>
<td>n_0_two</td>
@@ -294,7 +294,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">3</a>
<a href="http://www.example.com">3</a>
</td>
<td>3</td>
<td>n_0_three</td>
@@ -302,7 +302,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">4</a>
<a href="http://www.example.com">4</a>
</td>
<td>4</td>
<td>n_0_four</td>
@@ -310,7 +310,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">5</a>
<a href="http://www.example.com">5</a>
</td>
<td>5</td>
<td>n_0_five</td>
@@ -318,7 +318,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">6</a>
<a href="http://www.example.com">6</a>
</td>
<td>6</td>
<td>n_0_six</td>
@@ -326,7 +326,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">7</a>
<a href="http://www.example.com">7</a>
</td>
<td>7</td>
<td>n_0_seven</td>
@@ -334,7 +334,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">8</a>
<a href="http://www.example.com">8</a>
</td>
<td>8</td>
<td>n_0_eight</td>
@@ -342,7 +342,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">9</a>
<a href="http://www.example.com">9</a>
</td>
<td>9</td>
<td>n_0_nine</td>
@@ -350,7 +350,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">10</a>
<a href="http://www.example.com">10</a>
</td>
<td>10</td>
<td>n_0_ten</td>

View File

@@ -287,7 +287,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">1</a>
<a href="http://www.example.com">1</a>
</td>
<td>1</td>
<td>n_0_one</td>
@@ -295,7 +295,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">2</a>
<a href="http://www.example.com">2</a>
</td>
<td>2</td>
<td>n_0_two</td>
@@ -303,7 +303,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">3</a>
<a href="http://www.example.com">3</a>
</td>
<td>3</td>
<td>n_0_three</td>
@@ -311,7 +311,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">4</a>
<a href="http://www.example.com">4</a>
</td>
<td>4</td>
<td>n_0_four</td>
@@ -319,7 +319,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">5</a>
<a href="http://www.example.com">5</a>
</td>
<td>5</td>
<td>n_0_five</td>
@@ -327,7 +327,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">6</a>
<a href="http://www.example.com">6</a>
</td>
<td>6</td>
<td>n_0_six</td>
@@ -335,7 +335,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">7</a>
<a href="http://www.example.com">7</a>
</td>
<td>7</td>
<td>n_0_seven</td>
@@ -343,7 +343,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">8</a>
<a href="http://www.example.com">8</a>
</td>
<td>8</td>
<td>n_0_eight</td>
@@ -351,7 +351,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">9</a>
<a href="http://www.example.com">9</a>
</td>
<td>9</td>
<td>n_0_nine</td>
@@ -359,7 +359,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">10</a>
<a href="http://www.example.com">10</a>
</td>
<td>10</td>
<td>n_0_ten</td>

View File

@@ -278,7 +278,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">1</a>
<a href="http://www.example.com">1</a>
</td>
<td>1</td>
<td>n_0_one</td>
@@ -286,7 +286,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">2</a>
<a href="http://www.example.com">2</a>
</td>
<td>2</td>
<td>n_0_two</td>
@@ -294,7 +294,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">3</a>
<a href="http://www.example.com">3</a>
</td>
<td>3</td>
<td>n_0_three</td>
@@ -302,7 +302,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">4</a>
<a href="http://www.example.com">4</a>
</td>
<td>4</td>
<td>n_0_four</td>
@@ -310,7 +310,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">5</a>
<a href="http://www.example.com">5</a>
</td>
<td>5</td>
<td>n_0_five</td>
@@ -318,7 +318,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">6</a>
<a href="http://www.example.com">6</a>
</td>
<td>6</td>
<td>n_0_six</td>
@@ -326,7 +326,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">7</a>
<a href="http://www.example.com">7</a>
</td>
<td>7</td>
<td>n_0_seven</td>
@@ -334,7 +334,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">8</a>
<a href="http://www.example.com">8</a>
</td>
<td>8</td>
<td>n_0_eight</td>
@@ -342,7 +342,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">9</a>
<a href="http://www.example.com">9</a>
</td>
<td>9</td>
<td>n_0_nine</td>
@@ -350,7 +350,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">10</a>
<a href="http://www.example.com">10</a>
</td>
<td>10</td>
<td>n_0_ten</td>

View File

@@ -278,7 +278,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">1</a>
<a href="http://www.example.com">1</a>
</td>
<td>1</td>
<td>n_0_one</td>
@@ -286,7 +286,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">2</a>
<a href="http://www.example.com">2</a>
</td>
<td>2</td>
<td>n_0_two</td>
@@ -294,7 +294,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">3</a>
<a href="http://www.example.com">3</a>
</td>
<td>3</td>
<td>n_0_three</td>
@@ -302,7 +302,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">4</a>
<a href="http://www.example.com">4</a>
</td>
<td>4</td>
<td>n_0_four</td>
@@ -310,7 +310,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">5</a>
<a href="http://www.example.com">5</a>
</td>
<td>5</td>
<td>n_0_five</td>
@@ -318,7 +318,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">6</a>
<a href="http://www.example.com">6</a>
</td>
<td>6</td>
<td>n_0_six</td>
@@ -326,7 +326,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">7</a>
<a href="http://www.example.com">7</a>
</td>
<td>7</td>
<td>n_0_seven</td>
@@ -334,7 +334,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">8</a>
<a href="http://www.example.com">8</a>
</td>
<td>8</td>
<td>n_0_eight</td>
@@ -342,7 +342,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">9</a>
<a href="http://www.example.com">9</a>
</td>
<td>9</td>
<td>n_0_nine</td>
@@ -350,7 +350,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">10</a>
<a href="http://www.example.com">10</a>
</td>
<td>10</td>
<td>n_0_ten</td>

View File

@@ -278,7 +278,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">1</a>
<a href="http://www.example.com">1</a>
</td>
<td>1</td>
<td>n_0_one</td>
@@ -286,7 +286,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">2</a>
<a href="http://www.example.com">2</a>
</td>
<td>2</td>
<td>n_0_two</td>
@@ -294,7 +294,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">3</a>
<a href="http://www.example.com">3</a>
</td>
<td>3</td>
<td>n_0_three</td>
@@ -302,7 +302,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">4</a>
<a href="http://www.example.com">4</a>
</td>
<td>4</td>
<td>n_0_four</td>
@@ -310,7 +310,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">5</a>
<a href="http://www.example.com">5</a>
</td>
<td>5</td>
<td>n_0_five</td>
@@ -318,7 +318,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">6</a>
<a href="http://www.example.com">6</a>
</td>
<td>6</td>
<td>n_0_six</td>
@@ -326,7 +326,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">7</a>
<a href="http://www.example.com">7</a>
</td>
<td>7</td>
<td>n_0_seven</td>
@@ -334,7 +334,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">8</a>
<a href="http://www.example.com">8</a>
</td>
<td>8</td>
<td>n_0_eight</td>
@@ -342,7 +342,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">9</a>
<a href="http://www.example.com">9</a>
</td>
<td>9</td>
<td>n_0_nine</td>
@@ -350,7 +350,7 @@
</tr>
<tr>
<td align="Right" nowrap="nowrap" valign="Top">
<a href="http://www.google.com">10</a>
<a href="http://www.example.com">10</a>
</td>
<td>10</td>
<td>n_0_ten</td>

View File

@@ -287,7 +287,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">1</a>
<a href="http://www.example.com">1</a>
</td>
<td>1</td>
<td>n_0_one</td>
@@ -295,7 +295,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">2</a>
<a href="http://www.example.com">2</a>
</td>
<td>2</td>
<td>n_0_two</td>
@@ -303,7 +303,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">3</a>
<a href="http://www.example.com">3</a>
</td>
<td>3</td>
<td>n_0_three</td>
@@ -311,7 +311,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">4</a>
<a href="http://www.example.com">4</a>
</td>
<td>4</td>
<td>n_0_four</td>
@@ -319,7 +319,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">5</a>
<a href="http://www.example.com">5</a>
</td>
<td>5</td>
<td>n_0_five</td>
@@ -327,7 +327,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">6</a>
<a href="http://www.example.com">6</a>
</td>
<td>6</td>
<td>n_0_six</td>
@@ -335,7 +335,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">7</a>
<a href="http://www.example.com">7</a>
</td>
<td>7</td>
<td>n_0_seven</td>
@@ -343,7 +343,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">8</a>
<a href="http://www.example.com">8</a>
</td>
<td>8</td>
<td>n_0_eight</td>
@@ -351,7 +351,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">9</a>
<a href="http://www.example.com">9</a>
</td>
<td>9</td>
<td>n_0_nine</td>
@@ -359,7 +359,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">10</a>
<a href="http://www.example.com">10</a>
</td>
<td>10</td>
<td>n_0_ten</td>

View File

@@ -287,7 +287,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">1</a>
<a href="http://www.example.com">1</a>
</td>
<td>1</td>
<td>n_0_one</td>
@@ -295,7 +295,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">2</a>
<a href="http://www.example.com">2</a>
</td>
<td>2</td>
<td>n_0_two</td>
@@ -303,7 +303,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">3</a>
<a href="http://www.example.com">3</a>
</td>
<td>3</td>
<td>n_0_three</td>
@@ -311,7 +311,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">4</a>
<a href="http://www.example.com">4</a>
</td>
<td>4</td>
<td>n_0_four</td>
@@ -319,7 +319,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">5</a>
<a href="http://www.example.com">5</a>
</td>
<td>5</td>
<td>n_0_five</td>
@@ -327,7 +327,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">6</a>
<a href="http://www.example.com">6</a>
</td>
<td>6</td>
<td>n_0_six</td>
@@ -335,7 +335,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">7</a>
<a href="http://www.example.com">7</a>
</td>
<td>7</td>
<td>n_0_seven</td>
@@ -343,7 +343,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">8</a>
<a href="http://www.example.com">8</a>
</td>
<td>8</td>
<td>n_0_eight</td>
@@ -351,7 +351,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">9</a>
<a href="http://www.example.com">9</a>
</td>
<td>9</td>
<td>n_0_nine</td>
@@ -359,7 +359,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">10</a>
<a href="http://www.example.com">10</a>
</td>
<td>10</td>
<td>n_0_ten</td>

View File

@@ -284,7 +284,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">1</a>
<a href="http://www.example.com">1</a>
</td>
<td>1</td>
<td>n_0_one</td>
@@ -292,7 +292,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">2</a>
<a href="http://www.example.com">2</a>
</td>
<td>2</td>
<td>n_0_two</td>
@@ -300,7 +300,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">3</a>
<a href="http://www.example.com">3</a>
</td>
<td>3</td>
<td>n_0_three</td>
@@ -308,7 +308,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">4</a>
<a href="http://www.example.com">4</a>
</td>
<td>4</td>
<td>n_0_four</td>
@@ -316,7 +316,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">5</a>
<a href="http://www.example.com">5</a>
</td>
<td>5</td>
<td>n_0_five</td>
@@ -324,7 +324,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">6</a>
<a href="http://www.example.com">6</a>
</td>
<td>6</td>
<td>n_0_six</td>
@@ -332,7 +332,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">7</a>
<a href="http://www.example.com">7</a>
</td>
<td>7</td>
<td>n_0_seven</td>
@@ -340,7 +340,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">8</a>
<a href="http://www.example.com">8</a>
</td>
<td>8</td>
<td>n_0_eight</td>
@@ -348,7 +348,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">9</a>
<a href="http://www.example.com">9</a>
</td>
<td>9</td>
<td>n_0_nine</td>
@@ -356,7 +356,7 @@
</tr>
<tr>
<td>
<a href="http://www.google.com">10</a>
<a href="http://www.example.com">10</a>
</td>
<td>10</td>
<td>n_0_ten</td>

Some files were not shown because too many files have changed in this diff Show More