-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR adds a known failures page. This resolves #1750. The known failures are moved from the example pages. (I also updated all example pages with invalid HTML.) Some known failures were actually fixed in the meantime but never updated, so I removed a few. Those were: - Handlebars - Markdown's nested bold-italic - Smarty - Textile's "Nested styles are only partially supported" ### Screenshot <details> ![image](https://user-images.githubusercontent.com/20878432/56849438-7eca3200-68f4-11e9-9dc3-bf0256be8d1e.png) </details>
- Loading branch information
1 parent
a16d4a2
commit 36a5fa0
Showing
65 changed files
with
539 additions
and
543 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
<h2>Comments</h2> | ||
<pre><code><%-- This is a comment --%> | ||
<%-- This is a | ||
<pre><code><%-- This is a comment --%> | ||
<%-- This is a | ||
multi-line comment --%></code></pre> | ||
|
||
<h2>Page directives</h2> | ||
<pre><code><%@ Page Title="Products" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="ProductList.aspx.cs" Inherits="WingtipToys.ProductList" %> | ||
<pre><code><%@ Page Title="Products" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="ProductList.aspx.cs" Inherits="WingtipToys.ProductList" %> | ||
</code></pre> | ||
|
||
<h2>Directive tag</h2> | ||
<pre><code><%: Page.Title %> | ||
<a href="ProductDetails.aspx?productID=<%#:Item.ProductID%>"> | ||
<pre><code><%: Page.Title %> | ||
<a href="ProductDetails.aspx?productID=<%#:Item.ProductID%>"> | ||
<span> | ||
<%#:Item.ProductName%> | ||
<%#:Item.ProductName%> | ||
</span></code></pre> | ||
|
||
<h2>Highlighted C# inside scripts</h2> | ||
<p>This requires the C# component to be loaded. | ||
On this page, check C# <strong>before</strong> checking ASP.NET should make | ||
the example below work properly.</p> | ||
<pre><code><script runat="server"> | ||
// The following variables are visible to all procedures | ||
// within the script block. | ||
String str; | ||
int i; | ||
int i2; | ||
// The following variables are visible to all procedures | ||
// within the script block. | ||
String str; | ||
int i; | ||
int i2; | ||
|
||
int DoubleIt(int inpt) | ||
{ | ||
// The following variable is visible only within | ||
// the DoubleIt procedure. | ||
int factor = 2; | ||
int DoubleIt(int inpt) | ||
{ | ||
// The following variable is visible only within | ||
// the DoubleIt procedure. | ||
int factor = 2; | ||
|
||
return inpt * factor; | ||
} | ||
</script></code></pre> | ||
return inpt * factor; | ||
} | ||
</script></code></pre> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.