1<!--/* 2* Copyright (c) 2025 Huawei Device Co., Ltd. 3* Licensed under the Apache License, Version 2.0 (the "License"); 4* you may not use this file except in compliance with the License. 5* You may obtain a copy of the License at 6* 7* http://www.apache.org/licenses/LICENSE-2.0 8* 9* Unless required by applicable law or agreed to in writing, software 10* distributed under the License is distributed on an "AS IS" BASIS, 11* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12* See the License for the specific language governing permissions and 13* limitations under the License. 14*/--> 15 16<!DOCTYPE html> 17<html> 18 19<head> 20 <meta charset='utf-8'> 21 <title>printTest</title> 22 <style> 23 @media print { 24 h1 { 25 display: none; 26 } 27 } 28 </style> 29</head> 30 31<body> 32<div> 33 <h1><b> 34 <center>This is a test page for printing</center> 35 </b> 36 <hr color=#00cc00 width=95%> 37 </h1> 38 <button class='Button Button--outline' onclick='window.print();'>Print</button> 39 <p> content content content </p> 40 <div id='printableTable'> 41 <table> 42 <thead> 43 <tr> 44 <td>Thing</td> 45 <td>Chairs</td> 46 </tr> 47 </thead> 48 <tbody> 49 <tr> 50 <td>1</td> 51 <td>blue</td> 52 </tr> 53 <tr> 54 <td>2</td> 55 <td>green</td> 56 </tr> 57 </tbody> 58 </table> 59 </div> 60 <p> content content content </p> 61 <p> content content content </p> 62</div> 63</body> 64