This morning my Google Chrome web browser updated. Now my webpage won’t display anything except the words SVG_Bezier_Curve on the bottom of the page. And I don’t know why.
Here is my XHTML code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SVG_Bezier_Curve</title>
<link rel="stylesheet" type="text/css" href="http://localhost:8080/exist/rest/db/apps/HTML_Student/SVG_Bezier_Curve.css"/>
<script language="javascript" src="https://localhost:8080/exist/rest/db/apps/HTML_Student/SVG_Bezier_Curve_2.js"/>
</head>
<body>
<input type="text" id="My_Text" value="I was here."/>
<input type="button"/>
<input type="button"/>
<p id="My_Paragraph"/>
<svg xmlns="http://www.w3.org/2000/svg" id="My_SVG" height="500" width="500">
<path id="Bezier_Curve_1"/>
<path id="Bezier_Curve_2" d="M 300, 200 A 50, 50 0,0,1 400,200" stroke="red" stroke-width="3" fill="none">
</path>
</svg>
</body>
</html>