forked from hober/PWETF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
826 lines (823 loc) · 33.1 KB
/
index.html
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
Positive Work Environment at W3C: Code of Ethics and Professional Conduct
</title>
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove"
defer="defer"></script>
<script class='remove'>
// See https://github.com/w3c/respec/wiki/ for how to configure ReSpec
var respecConfig = {
specStatus: "base",
shortName: "pwe",
editors: [{
name: "Tzviya Siegman",
company: "Wiley",
companyURL: "https://www.wiley.com",
w3cid: 65542
}, {
name: "An Qi Li",
company: "Ali Baba",
companyURL: "https://www.alibaba.com",
w3cid: 40190
}, {
name: "Ada Rose Cannon",
company: "Samsung",
companyURL: "https://samsung.com",
w3cid: 66378
}],
github: {
repoURL: "https://github.com/w3c/PWETF/",
branch: "main"
},
};
</script>
</head>
<body>
<section id="abstract">
<p>
W3C's <cite>Code of Ethics and Professional Conduct</cite> defines
accepted and acceptable behaviors and promotes high standards of
professional practice. The goals of this code are to:
</p>
<ul>
<li>Define acceptable and expected standards of behavior.
</li>
<li>Provide a benchmark.
</li>
<li>Ensure transparency in community and group management.
</li>
<li>Ensure an environment where people can participate without fear of
harassment.
</li>
<li>Contribute to the identity of the organization.
</li>
</ul>
</section>
<section id="sotd">
<p>
This is an unofficial proposal. Refer to <a href=
"https://www.w3.org/Consortium/cepc/">Code of Ethics and Professional
Conduct</a> for the operational version.
</p>
</section>
<section id="introduction">
<h2>
Introduction
</h2>
<p>
W3C is a growing and global community where <a>participants</a> choose
to work together. W3C is committed to maintaining a positive working
environment, where each participant feels appreciated and respected and
where everyone adheres to the same high level of standards of personal
behavior. In that process we experience differences in language,
location, nationality, and experience. In such a diverse environment,
misunderstandings and disagreements happen, which in most cases can be
resolved informally.
</p>
<p>
W3C's <cite>Code of Ethics and Professional Conduct</cite>
(<abbr title="Code of Ethics and Professional Conduct">CEPC</abbr>) is
useful to define accepted and <a>acceptable behaviors</a> and to
promote high standards of professional practice. The goal of this code
of conduct is to ensure that W3C is an environment where everyone can
participate without fear of <a>harassment</a>. It also provides a
benchmark for self evaluation and acts as a vehicle for better identity
of the organization.
</p>
<p>
The CEPC is complemented by a set of <a href=
"https://www.w3.org/Consortium/pwe/#Procedures">Procedures</a>, applies
to any member of the W3C community – staff, members, invited experts,
and <a>participants</a> in W3C meetings, W3C teleconferences, W3C
mailing lists, code repositories, W3C conferences or W3C functions, etc.
Note that this code complements rather than replaces legal rights and
obligations pertaining to any particular situation.
</p>
<p>
<a href="https://www.w3.org/Consortium/pwe/#Education">Education and training
materials</a> are available from the <a href=
"https://www.w3.org/Consortium/pwe/">Positive Work Environment public homepage</a>.
</p>
</section>
<section>
<h2>
Statement of Intent
</h2>
<p>
W3C is committed to maintaining a <strong>positive</strong> work
environment. This commitment calls for a workplace where
<a>participants</a> at all levels behave according to the rules of the
following code. A foundational concept of this code is that <em>we all
share responsibility</em> for our work environment.
</p>
</section>
<section>
<h2>
Code
</h2>
<section>
<h3>
Expected Behavior
</h3>
<p>
Treat each other with respect,
professionalism, fairness, and sensitivity to our many differences
and strengths, including in situations of high pressure and urgency.
</p>
<ul>
<li>Appreciate and accommodate our similarities and differences. We
come from many cultures and backgrounds, ways of life, and standards
of behavior. Cultural differences can encompass everything from
official religious observances to personal habits to clothing. Be
respectful of people with different practices, attitudes, and
beliefs. To help us achieve and maintain these high standards, each
individual participant is expected to share responsibility for our
work environment by adhering to the behavioral guidelines herein.
</li>
<li>Have empathy when discussing sensitive issues. Some participants
may have experienced (or been subjected to) various forms of violence
in their lives, which may cause distress when they are reminded of
it. Avoid making jokes or callously mentioning sexual violence such
as stalking or sexual assault; in cases when the need arises to
discuss these issues and how they affect people - do so with tact and
empathy taking into account the gravity of the situation, and make
sure that <a>participants</a> are appropriately warned in advance so
they can choose to step out of these discussions.
</li>
<li>Treat everyone with respect. We are a large community of people who are passionate
about our work, sometimes holding strong opinions and beliefs. We are
committed to dealing with each other with courtesy, respect, and
dignity at all times. Misunderstandings and disagreements do happen.
When conflicts arise, we are expected to resolve them maintaining
that courtesy, respect, and dignity, even when emotions are
heightened.
</li>
<li>Do not accept or engage in abusive behavior in any form, whether it is
verbal, physical, sexual, or implied.</li>
<li>Be honest. Be truthful, sincere, forthright and, unless professional duties require confidentiality or special discretion, candid, straightforward, and frank.</li>
<li>Be inclusive and promote <a>diversity</a>. Seek diverse
perspectives. Diversity of views and of people powers innovation,
even if it is not always comfortable. Encourage all voices. Help new
perspectives be heard and listen actively. If you find yourself
dominating a discussion, it is especially important to step back and
encourage other voices to join in. Provide alternative ways to
contribute.
</li>
<li>Be aware of how much time is taken up by dominant members of the
group.
</li>
<li>Be aware that displays of affection may complicate professional
relationships. For some cultures, overtly friendly disposition
towards another participant involving body contact (e.g.: hugging,
touching on the arm or shoulder, or kissing) is uncommon and may be
perceived as an invasion of personal space, or as unwelcome advances.
</li>
<li>Work to eliminate your own biases, prejudices, and discriminatory
practices.
</li>
<li>Think of others’ needs from their point of view. Use preferred
names, titles (including pronouns), and the appropriate tone of
voice. Therefore, be formal and conservative in what you do and
liberal in what you accept from others and acknowledge the
contributions of your peers.
</li>
<li>Accommodate participants' needs for physical distancing and other accommodations or precautions due to health concerns such as immune deficiency, allergies, or chemical sensitivity.</li>
<li>Be sensitive to language differences. English is the default
language of the W3C. However, only some of us are native English
speakers. Many <a>participants</a> speak English as a second (or
third) language. People who communicate in non-native language often
struggle to understand fast and/or quiet speech and may speak louder
than they usually would when communicating in their native tongue. If
someone struggles to express their thoughts, help ensure their ideas
are adequately expressed, heard, and granted thorough consideration.
</li>
<li>Respect confidentiality and privacy. Sometimes, matters we discuss may
fall under various <a href=
"https://www.w3.org/2019/Process-20190301/#confidentiality-levels">confidentiality</a>
agreements and strict adherence to these agreements is expected. In
addition, certain pieces of information disclosed in a group setting
may be private in nature, or we may inadvertently learn confidential
information accidentally disclosed by other participants. Please
exercise good judgment, and make reasonable efforts to protect
privacy and confidentiality of all participants.
</li>
</ul>
</section>
<section>
<h3 id="unacceptablebehavior">
Unacceptable Behavior
</h3>
<p>
<dfn>Unacceptable behaviors</dfn> run counter to the Code
of Ethics and Professional Conduct. This list of <a>unacceptable
behaviors</a> does not cover every case. Each person you interact
with is unique, and behavior must be assessed on an individual level.
Ensuring that your behavior does not have a negative impact is your
responsibility. W3C strictly prohibits <a>discrimination</a>,
intimidation, <a>harassment</a>, and <a>bullying</a> of any kind and
on any basis.
</p>
<p>
<a>Unacceptable behaviors</a> include, but are not limited to:
</p>
<ul>
<li>Offensive comments related to gender, <a>gender identity</a> and
<a>gender expression</a>, sexual orientation, disability (both
visible and invisible), mental health, <a>neurotype</a>, physical
appearance, body, age, race, socio-economic status, ethnicity,
caste, nationality, language, or religion
</li>
<li>Unwelcome comments regarding a person’s lifestyle choices and
practices, including those related to food, health, parenting, drugs,
and employment
</li>
<li>
<a>Misgendering</a> someone by deliberately referring to a person
using the wrong pronouns or by using someone's proper names or
other terms that person has asked not to be used, also known as
<a>deadnaming</a>.
</li>
<li>Gratuitous or off-topic sexual images or behavior in spaces where
they are not appropriate.
</li>
<li>Physical contact and simulated physical contact (e.g., textual
descriptions like “hug” or “backrub”) without <a>consent</a> or after
a request to stop.
</li>
<li>Threats of violence.
</li>
<li>Incitement of violence towards any individual, including
encouraging a person to commit suicide or to engage in self-harm.
</li>
<li>Deliberate intimidation.
</li>
<li>Stalking or physically following or invading someone's personal space after a request to stop.</li>
<li>Exposing others to contagious disease.</lI>
<li>
<a>Harassing</a> photography or recording, including logging online
activity for <a>harassment</a> purposes.
</li>
<li>Sustained disruption of discussion.
</li>
<li>Unwelcome sexual attention.
</li>
<li>Patterns of inappropriate social contact, such as
requesting/assuming inappropriate levels of intimacy with others.
</li>
<li>Continued one-on-one communication after requests to cease.
</li>
<li>Deliberate outing of any aspect of a person’s <a>gender
identity</a> without their <a>consent</a>.
</li>
<li>Publication of non-harassing private communication without
<a>consent</a> by the involved parties.
</li>
<li>Use of coded language (also known as "dog whistles") used to
rally support for hate groups or to intimidate vulnerable groups.
</li>
<li>Microaggressions, which are small comments or questions, either
intentional or unintentional, that marginalize people by
communicating hostile, derogatory, or negative beliefs. Examples
include:
<ul>
<li>Patronizing language or behavior:
<ul>
<li>Be aware that, regardless of the speaker's intentions,
some phrases or constructions lead people to expect a
patronizing statement to follow, and avoid such phrases. For
example, beginning an interjection with "Well, actually..."
can set this expectation and be taken as a sign of
disrespect.
</li>
<li>Assuming without asking that particular people or groups
need concepts defined or explained to them. It’s great to be
sensitive to the fact that people may not be familiar with
technical terms you use every day, but assuming that people
are uninformed can come across as patronizing.
</li>
<li>Assuming that particular groups of people are technically
unskilled (e.g., “So easy your grandmother could do it”).
</li>
</ul>
</li>
<li>Repeatedly interrupting or talking over someone else.
</li>
<li>Feigning surprise at someone’s lack of knowledge or awareness
about a topic.
</li>
<li>The use of racially charged language to describe an
individual or thing (such as “thug” or “ghetto”).
</li>
<li>Referring to an individual in a way that <a>demeans</a> or
challenges the validity of their racial identity.
</li>
<li>Mocking someone’s real or perceived accent or first language.
</li>
</ul>
</li>
<li>Retaliating, or taking adverse action, against anyone who files a complaint that someone has
violated this code of conduct.
</li>
</ul>
<section><h4>Safety versus Comfort</h4>
<p>This Code prioritizes the safety of individuals, particularly those in marginalized communities, over the comfort of others, for example in situations involving:</p>
<ul>
<li>"Reverse" -isms, including "reverse racism," "reverse
<a>sexism</a>," and "cisphobia".
</li>
<li>Reasonable communication of boundaries, such as “leave me alone,”
“go away,” or “I’m not discussing this with you”.
</li>
<li>Communication in a tone you don’t find congenial.
</li>
<li>Criticisms of racist, sexist, <a>cissexist</a>, or otherwise
oppressive behavior or assumptions.
</li>
</ul>
</section>
</section>
</section>
<section id="Reporting">
<h2>
Reporting Violations and Supporting the Code
</h2>
<p>
If you are concerned about your immediate safety, contact <a href=
"https://en.wikipedia.org/wiki/List_of_emergency_telephone_numbers">local
emergency services</a>. For a face to face event you may need to contact
venue staff for assistance contacting emergency services.
</p>
<p>
In most instances if you have an issue with someone’s behavior along
the lines of this Code then please raise it; there are a few potential
people you could raise it to depending on your situation and your
safety.
</p>
<p>
In most cases, issues are best resolved at the source. Accordingly,
raising the issue with the group chair or team contact of the relevant
group is usually the best first place to raise an issue. Group chairs
and team contacts also have more of the context which helps them
address the issue.
</p>
<p>
You are welcome to raise issues directly with the <a>Ombudspeople</a> as a <a href=
"mailto:[email protected]">group</a> or <a href="https://www.w3.org/Consortium/pwe/#Procedures">individually</a>. All
complaints will be taken seriously and will receive a response.
</p>
<p>
If you are responsible for a community within the W3C such as in the
role of a chair of a working group and you witness <a>harassment</a> or
any other behavior which goes against this code you are encouraged to
address the issue directly. If you need assistance, you might get
assistance from an Ombudsperson or senior W3C management.
</p>
<p>
Chairs, Team Contacts, and Event Organizers should take such immediate
action as they deem necessary in order to stop <a href=
"#unacceptablebehavior">unacceptable behavior</a>. This action may take
many forms, but examples may include:
</p>
<section>
<h3>
Immediately
</h3>
<ul>
<li>Pointing out if someone is violating the CEPC to give them the
chance to withdraw or edit their statement
</li>
<li>Reminding <a>participants</a> that meetings and work operate
under the CEPC
</li>
<li>Asking someone to leave a meeting or a conversation thread
</li>
</ul>
</section>
<section>
<h3>
After the Meeting
</h3>
<ul>
<li>Following up with affected participants, possibly in separate
meetings
</li>
<li>Reaching out to an Ombudsperson for assistance
</li>
<li>Further information and resources for Chairs are available via
the Chairs Training program
</li>
</ul>
<p>
<strong>Note</strong> that the action must be directly related to
stopping harm, and must be proportionate. People affected may request
an Ombudsperson consider whether such actions are unacceptable
under the terms of this Code.
</p>
<p>
You can read more in the <a href=
"https://www.w3.org/Consortium/pwe/#Procedures">PWETF Procedures</a>
document.
</p>
</section>
</section>
<section id="mistake">
<h2>
If You've Done Something Improper
</h2>
<p>
As we engage in diverse communities we may accidentally cause offense,
whether through using unknowingly offensive terminology or through
missing social cues.
</p>
<p>
If you realize (or are told) that you have offended someone then take
the appropriate steps:
</p>
<ol>
<li>Acknowledge that you've done something improper
</li>
<li>Briefly apologize. Don't try to explain yourself or minimize the
issue
</li>
<li>If possible, edit your message, restate your communication in a
better way or withdraw your statement. Publicly revising your statement
helps define the culture for others
</li>
</ol>
<p>
Alice: “Yeah I used X and it was really crazy!” Eve: “Hey, could you
not use that word? What about ‘ridiculous’ instead?” Alice: “oh sorry,
sure.” -> edits old message to say “Yeah I used X and it was really
confusing!”
</p>
<p>
This will allow conversation to quickly continue without any need of
further action or escalating the situation.
</p>
<p>
If you don't understand what you did wrong, assume that the hurt party
has good cause and accept it. We cannot know everyone's background and
should do our best to avoid harm. You are welcome to discuss it with a
W3C <a href="https://www.w3.org/Consortium/pwe/#Procedures">ombudsperson</a> later.
</p>
</section>
<section id="glossary">
<h2>
Glossary
</h2>
<dl data-sort="">
<dt>
<dfn data-lt="Acceptable|accepted">Acceptable Behavior</dfn>
</dt>
<dd>
<p>
Within the W3C, this is behavior which abides by this Code of
Ethics and Professional Conduct.
</p>
</dd>
<dt>
<dfn data-lt="bully|bullying">Workplace Bullying</dfn>
</dt>
<dd>
<p>
A tendency of individuals or groups to use persistent aggressive
or unreasonable behavior (e.g. verbal or written abuse, offensive
conduct or any interference which undermines or impedes work)
against a co-worker or any professional relations.
</p>
</dd>
<dt>
<dfn data-lt="cisgender|cis person|cis people" data-lt-nodefault=
"">Cisgender/cis person</dfn>
</dt>
<dd>
<p>
A person whose <a>gender identity</a> matches the one they were
assigned at birth.
</p>
</dd>
<dt>
<dfn data-lt="cissexist">Cissexism</dfn>
</dt>
<dd>
<p>
The belief or assumption that <a>cis people</a>'s gender
identities, expressions, and embodiments are more natural and
legitimate than those of trans people. The term is related to
<a>transphobia</a>.
</p>
</dd>
<dt>
<dfn>Consent</dfn>
</dt>
<dd>
<p>
<a>Consent</a> occurs when one person voluntarily agrees to the
proposal or desires of another. It is a term of common speech, with
specific definitions as used in such fields as the law, medicine,
research, and sexual relationships. <cite><a href=
"https://en.wikipedia.org/wiki/Consent">Wikipedia</a></cite>
</p>
</dd>
<dt>
<dfn>Deadnaming</dfn>
</dt>
<dd>
<p>
is using someone's name after they have changed it. Often a
person's name is not their "legal" name, whatever that may mean.
</p>
<p>
If someone asks you to use a name for them you should use it. This
includes:
</p>
<ul>
<li>A trans person, who has changed their name when transitioning
</li>
<li>Someone who has changed their name through marriage
</li>
<li>Someone who has changed their name for any other reason
</li>
</ul>
</dd>
<dt>
<dfn data-lt="demeaning|demean">Demeaning behavior</dfn>
</dt>
<dd>
<p>
Acting in a way that reduces another person's dignity, sense of
self-worth, or respect within the community.
</p>
</dd>
<dt>
<dfn data-lt="discriminate">Discrimination</dfn>
</dt>
<dd>
<p>
The prejudicial treatment of an individual based on criteria
such as: physical appearance, race, ethnic origin, genetic
differences, national or social origin, name, religion, gender,
sexual orientation, family or health situation, pregnancy,
disability, age, education, wealth, domicile,
morals, employment, or union activity.
</p>
</dd>
<dt>
<dfn>Diversity</dfn>
</dt>
<dd>
<p>
Diversity for the purposes of diversity and inclusion, is any
dimension that can be used to differentiate groups and people from
one another. With a focus on age, gender, ethnicity, religion,
disability, sexual orientation, education, and national origin.
</p>
</dd>
<dt>
<dfn>Gender Identity</dfn>
</dt>
<dd>
<p>
Gender identity is the personal sense of one's own gender. Gender
identity can correlate with assigned sex at birth or can differ
from it. <cite><a href=
"https://en.wikipedia.org/wiki/Gender_identity">Wikipedia</a></cite>
</p>
</dd>
<dt>
<dfn>Gender Expression</dfn>
</dt>
<dd>
<p>
Gender expression is a person's behavior, mannerisms, interests,
and appearance that are associated with gender in a particular
cultural context. <cite><a href=
"https://en.wikipedia.org/wiki/Gender_expression">Wikipedia</a></cite>
</p>
</dd>
<dt>
<dfn>Inclusivity</dfn>
</dt>
<dd>
<p>
The practice or policy of including people who might otherwise
be excluded or marginalized.
</p>
</dd>
<dt>
<dfn data-lt="insulting|insult">Insulting behavior</dfn>
</dt>
<dd>
<p>
Treating another person with scorn or disrespect.
</p>
</dd>
<dt>
<dfn data-lt="harass|harassing">Harassment</dfn>
</dt>
<dd>
<p>
Any conduct, verbal or physical, that has the intent or effect
of interfering with an individual, or that creates an intimidating,
hostile, or offensive environment.
</p>
</dd>
<dt>
<dfn>Marginalized Communities</dfn>
</dt>
<dd>
<p>
Communities which are often overlooked, ignored or denigrated
to the detriment of the members of that community. People may often
be part of multiple communities such as being queer and disabled.
</p>
</dd>
<dt>
<dfn>Mental Health</dfn>
</dt>
<dd>
<p>
A person’s condition with regard to their psychological and
emotional well-being.
</p>
</dd>
<dt>
<dfn>Microagression</dfn>
</dt>
<dd>
<p>
Microaggression is a term used for brief and commonplace daily
verbal, behavioral, or environmental indignities, whether
intentional or unintentional, that communicate hostile, derogatory,
or negative prejudicial slights and insults toward any group,
particularly culturally marginalized group. <cite><a href=
"https://en.wikipedia.org/wiki/Microaggression">Wikipedia</a></cite>
</p>
</dd>
<dt>
<dfn>Misgendering</dfn>
</dt>
<dd>
<p>
Misgendering is addressing someone using gendered words to imply or
state they are a different gender than the one they have asked
to be used.
</p>
<p>
Examples include refusing to use their correct pronouns such as
he/him, she/her, they/them or others.
</p>
</dd>
<dt>
<dfn>Neurotype</dfn>
</dt>
<dd>
<p>
A type of brain, in terms of how a person interprets and responds
to social cues.
</p>
</dd>
<dt>
<dfn>Ombudsperson</dfn>
</dt>
<dd>
<p>
One who assists individuals and groups in the resolution of
conflicts or concerns. They are a designated neutral who is
appointed or employed by the W3C to facilitate the informal
resolution of concerns of <a>participants</a> within the W3C.
</p>
</dd>
<dt>
<dfn>Participant</dfn>
</dt>
<dd>
<p>
Includes the following persons:
</p>
</dd>
<dd>
<ul>
<li>W3C Team (employees, contractors,
<a href=
"https://www.w3.org/Consortium/Process/#Team">
Fellows</a>)
</li>
<li>W3C group participants (member representatives and invited experts)
</li>
<li>Advisory Committee Representatives (and their guests)
</li>
<li>Anyone from the Public partaking in the W3C work environment
(e.g. commenting on our specs, emailing us, attending our
conferences or functions, etc.)
</li>
</ul>
</dd>
<dt>
<dfn>Prejudice</dfn>
</dt>
<dd>
<p>
Prejudice refers to a set of discriminatory or derogatory attitudes based on assumptions deriving from perceptions about such things as race, culture, religion, skin color, age, sexual orientation, gender, disability, or gender expression.
</p>
</dd>
<dt>
<dfn>Racism</dfn>
</dt>
<dd>
<p>
Racism is where racial prejudices work to enhance existing power
imbalances within communities to further marginalize groups based
upon race.
</p>
</dd>
<dt>
<dfn>Sexism</dfn>
</dt>
<dd>
<p>
Prejudice or <a>discrimination</a> based on sex or perceived sex.
Usually against women or non-binary people.
</p>
<p>
Sexism is where these prejudices work to enhance existing power
imbalances within communities to further marginalize groups.
</p>
</dd>
<dt>
<dfn data-lt="sexually harass">Sexual harassment</dfn>
</dt>
<dd><p>Includes requests for sexual favors, and other verbal or physical
conduct of a sexual nature, where:</p>
<ul>
<li>submission to such conduct is made either explicitly or implicitly
a term or condition of an individual's employment</li>
<li>submission to or rejection of such conduct by an individual is used
as a basis for employment decisions affecting the individual</li>
<li>such conduct has the purpose or effect of unreasonably interfering
with an individual's work performance or creating an intimidating
hostile or offensive working environment</li>
</ul>
</dd>
<dt>
<dfn>Sexual Orientation</dfn>
</dt>
<dd>
<p>
Sexual Orientation relates to the gender(s) a person may be
attracted to in relation to their own gender.
</p>
</dd>
<dt>
<dfn>Socio-economic status</dfn>
</dt>
<dd>
<p>
Socio-economic status is the combined effects relating to someone’s
wealth, social position/class and property ownership.
</p>
</dd>
<dt>
<dfn>Transphobia</dfn>
</dt>
<dd>
<p>
Transphobia encompasses a range of negative attitudes, feelings, or
actions toward transgender or transsexual people, or toward
transsexuality. Transphobia can include fear, aversion, hatred,
violence, anger, or discomfort felt or expressed toward people who
do not conform to society's gender expectation.
</p>
</dd>
<dt>
<dfn>Unwelcome sexual advance</dfn>
</dt>
<dd><p>includes visual displays of degrading sexual images, sexually suggestive conduct, offensive remarks of a sexual nature, requests for sexual favors, unwelcome physical contact, and sexual assault.</p></dd>
</dl>
</section>
<section id="Attribution">
<h2>
Attribution
</h2>
<p>
Large portions of the text for this policy were taken from the
following resources:
</p>
<ul>
<li>
<a href=
"https://www.w3.org/Consortium/cepc/cepc-20141022/Overview.html">W3C
Code of Ethics and Professional Conduct 2014</a>
</li>
<li>
<a href=
"https://geekfeminism.wikia.org/wiki/Community_anti-harassment/Policy">
Geek Feminism Community anti-harassment/Policy</a>
</li>
</ul>
</section>
</body>
</html>