No, it is rather like this:
b : 00000111
a : 11111***
[a SU b] : 11111111
b : 00000111
a : 10111***
[a SU b] : 00111111
b : 00000111
a : 11110***
[a SU b] : 00000111
Note where I have written * for a; the value of a does not matter there. For WU, it is the same in the above diagrams.
For [a SB b] and [a WB b], a must hold before b holds (not at the same time).
b : 00000
a : 00001
[a SB b] : 11111
b : 10001
a : 00111
[a SB b] : 01110
You may also remember the following laws (weak or strong does not matter here):
!a & !b -> ([a SB b] <-> X[a SB b])
a & !b -> [a SB b]
b -> ![a SB b]
a & !b -> ([a SU b] <-> X[a SU b])
!a & !b -> ![a SU b]
b -> [a SU b]