1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/// The HTML id for the localStorage key input element.
pub const LOCAL_STORAGE_KEY_ID: &str = "local-storage-key";
/// The HTML id for the localStorage value input element.
pub const LOCAL_STORAGE_VALUE_ID: &str = "local-storage-value";
/// The HTML id for the sessionStorage key input element.
pub const SESSION_STORAGE_KEY_ID: &str = "session-storage-key";
/// The HTML id for the sessionStorage value input element.
pub const SESSION_STORAGE_VALUE_ID: &str = "session-storage-value";
/// The HTML id for the clipboard text input element.
pub const CLIPBOARD_TEXT_ID: &str = "clipboard-text";
/// The HTML id for the console message input element.
pub const CONSOLE_MESSAGE_ID: &str = "console-message";
/// The HTML name attribute for the localStorage key input element.
pub const LOCAL_STORAGE_KEY_NAME: &str = "local_key";
/// The HTML name attribute for the localStorage value input element.
pub const LOCAL_STORAGE_VALUE_NAME: &str = "local_value";
/// The HTML name attribute for the sessionStorage key input element.
pub const SESSION_STORAGE_KEY_NAME: &str = "session_key";
/// The HTML name attribute for the sessionStorage value input element.
pub const SESSION_STORAGE_VALUE_NAME: &str = "session_value";
/// The HTML name attribute for the clipboard text input element.
pub const CLIPBOARD_TEXT_NAME: &str = "clipboard_text";
/// The HTML name attribute for the console message input element.
pub const CONSOLE_MESSAGE_NAME: &str = "console_message";
/// The HTML input type for text.
pub const BROWSER_TEXT_TYPE: &str = "text";
/// The HTML autocomplete attribute value for off.
pub const BROWSER_AUTOCOMPLETE_OFF: &str = "off";
/// The HTML placeholder for the localStorage key input element.
pub const LOCAL_STORAGE_KEY_PLACEHOLDER: &str = "Storage key...";
/// The HTML placeholder for the localStorage value input element.
pub const LOCAL_STORAGE_VALUE_PLACEHOLDER: &str = "Storage value...";
/// The HTML placeholder for the sessionStorage key input element.
pub const SESSION_STORAGE_KEY_PLACEHOLDER: &str = "Session key...";
/// The HTML placeholder for the sessionStorage value input element.
pub const SESSION_STORAGE_VALUE_PLACEHOLDER: &str = "Session value...";
/// The HTML placeholder for the clipboard text input element.
pub const CLIPBOARD_TEXT_PLACEHOLDER: &str = "Enter text to copy...";
/// The HTML placeholder for the console message input element.
pub const CONSOLE_MESSAGE_PLACEHOLDER: &str = "Type a message to log...";