Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Ma
/
pub-share
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Ma
2022-12-17 17:21:45 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
60f1c3eea64c771cdbcdf22d4df7d335f21031fa
60f1c3ee
1 parent
492676e3
Add new file
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
0 deletions
helloworld.html
helloworld.html
0 → 100644
View file @
60f1c3e
<!--
Copyright 2021 The Kubeflow Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
<style>
.message
{
color
:
#666
;
font-family
:
monospace
;
line-height
:
22px
;
padding
:
10px
;
text-align
:
center
;
}
.error.message
{
color
:
red
;
}
</style>
</head>
<body>
<div
class=
"error message"
>
Hello World!
</div>
<script>
const
message
=
document
.
querySelector
(
".message"
);
message
.
innerText
+=
"\nI can run Javascript."
;
document
.
addEventListener
(
"DOMContentLoaded"
,
()
=>
{
try
{
const
parentCookie
=
window
.
parent
.
document
.
cookie
;
message
.
innerText
+=
"\nWARNING! I can see parent's cookies!"
;
}
catch
(
_
)
{
message
.
innerText
+=
"\nI can't see parent's cookies!"
;
message
.
classList
.
remove
(
"error"
);
}
});
</script>
<noscript>
<div
class=
"error message"
>
WARNING: I can't run Javascript.
</div>
</noscript>
</body>
</html>
...
...
Please
register
or
login
to post a comment