Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2010-03-01 22:30:19 +0000
committerChris Goldthorpe2010-03-01 22:30:19 +0000
commit77b551b275bfd7b6cfd71c619c3988d14dcec7a5 (patch)
treeb61a436537c197d3214e393e253846ac44b7e605 /org.eclipse.ua.tests/data/help/dynamic
parent94be1b5d90055af0cbea6b5b4a478769f1299e43 (diff)
downloadeclipse.platform.ua-77b551b275bfd7b6cfd71c619c3988d14dcec7a5.tar.gz
eclipse.platform.ua-77b551b275bfd7b6cfd71c619c3988d14dcec7a5.tar.xz
eclipse.platform.ua-77b551b275bfd7b6cfd71c619c3988d14dcec7a5.zip
Bug 290831 - [Help] Eclipse Help shortcuts the <a> in XHTML content.
Diffstat (limited to 'org.eclipse.ua.tests/data/help/dynamic')
-rw-r--r--org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyAnchor.xhtml32
-rw-r--r--org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyAnchorWithComment.xhtml32
-rw-r--r--org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyDiv.xhtml24
3 files changed, 88 insertions, 0 deletions
diff --git a/org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyAnchor.xhtml b/org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyAnchor.xhtml
new file mode 100644
index 000000000..c9b70baee
--- /dev/null
+++ b/org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyAnchor.xhtml
@@ -0,0 +1,32 @@
+<!--
+ Copyright (c) 2010 IBM Corporation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+ Contributors:
+ IBM Corporation - initial API and implementation
+ -->
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<meta http-equiv="Content-Style-Type" content="text/css" />
+
+<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css" />
+<title>Title</title>
+<script language="JavaScript" src="livehelp.js" type="text/javascript"></script>
+</head>
+
+<body bgcolor="#ffffff">
+<div></div>
+<div>
+Check that paragraph is not collapsed.
+<p></p>
+Check that anchor is not collapsed.
+<a></a>
+</div>
+
+</body>
+</html>
diff --git a/org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyAnchorWithComment.xhtml b/org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyAnchorWithComment.xhtml
new file mode 100644
index 000000000..afbe9bc94
--- /dev/null
+++ b/org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyAnchorWithComment.xhtml
@@ -0,0 +1,32 @@
+<!--
+ Copyright (c) 2010 IBM Corporation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+ Contributors:
+ IBM Corporation - initial API and implementation
+ -->
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<meta http-equiv="Content-Style-Type" content="text/css" />
+
+<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css" />
+<title>Title</title>
+<script language="JavaScript" src="livehelp.js" type="text/javascript"></script>
+</head>
+
+<body bgcolor="#ffffff">
+<div></div>
+<div>
+Check that paragraph is not collapsed.
+<p><!-- --></p>
+Check that anchor is not collapsed.
+<a><!-- --></a>
+</div>
+
+</body>
+</html>
diff --git a/org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyDiv.xhtml b/org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyDiv.xhtml
new file mode 100644
index 000000000..5c5c7b026
--- /dev/null
+++ b/org.eclipse.ua.tests/data/help/dynamic/xhtml/emptyDiv.xhtml
@@ -0,0 +1,24 @@
+<!--
+ Copyright (c) 2010 IBM Corporation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+ Contributors:
+ IBM Corporation - initial API and implementation
+ -->
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<meta http-equiv="Content-Style-Type" content="text/css" />
+
+<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css" />
+<title>Title</title>
+<script language="JavaScript" src="livehelp.js" type="text/javascript"></script>
+</head>
+
+<body bgcolor="#ffffff">
+<div></div></body>
+</html>

Back to the top